摘要:
1 安装node.js node.js安装教程 2 helloworld 2.1 代码 //类似于:java中的system.out.println("hello world"); console.log("hello world"); 2.2 执行命令 node helloworld.js 2.3 阅读全文
摘要:
01-let和const的定义 <script> // 传统定义变量和常量的方式 统一使用var var name = "广东学相伴"; var link = "https://www.kuangstudy.com"; var PI = Math.PI; console.log(name); con 阅读全文