// 变量:数据复用 let
// 函数:操作复用,function
console.log(260);
console.log("Chinese");
console.log(300 + 450);
// T000 代码中的成员
// Chrome控制台:浏览器中内置的JS解释器,执行器
// console.log():将计算结果输出到控制台,可以用在node中
// 数据、操作
let a;
let b;
// 第一步变量申明主要是为了将变量与作用域绑定
// 第二步:初始化,赋值
a = 10;
b = 30;
// 第二次赋值:更新值
a = 40;
// 删除,触发垃圾回收机制
// a=nul
// 按名使用
{
// 代码块,为了代码复用
a + b;
}
// 如果是一次性的执行,不需要代码块
console.log(a + b);
// 复用代码必分为两步:
// 1.声明
// 2.执行
function sum(a, b) {
a + b;
return a + b;
// console.log(a + b);
}
console.log(sum(9, 6));
//sum(5, 6);
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!