html Bases de JavaScript 1 - Découvertedulangage

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html Bases de JavaScript 1 - Découvertedulangage相关的知识,希望对你有一定的参考价值。

/* hello-wilder.js */

// Define some variables
const myMovie = 'Pulp Fiction';
const mDate = '1994';
const mReal = 'Quentin Tarantino ';
const message = 'My favorite movie is ' + myMovie + ' release on  ' + mDate + ' realized by '+ mReal;

// Display a popup
alert(message);
<!DOCTYPE html>
<html lang="fr">
  <head>
    <meta charset="utf-8">
    <title>Hello Wilder</title>
  </head>
  <body>
    <script src="hello-wilder.js"></script>
  </body>
</html>

以上是关于html Bases de JavaScript 1 - Découvertedulangage的主要内容,如果未能解决你的问题,请参考以下文章

javascript Rotar un elemento HTML una cantidad de grados con css

Python type 与 __bases__

javascript Executar comandos做CMD direto de arquivos JS com o NODE.js e montar arquivos HTML

Javascript-Eliminar标记A en pagina de impresiÃn

python面向对象编程

在元类中覆盖 __bases__