Blogger Information
Blog 31
fans 0
comment 0
visits 14732
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
JS插件安装,源码
木子木杉
Original
936 people have browsed it

插件安装

1.JavaScript (ES6) code snippets
2.Quokka.js
3.Quokka Statusbar Buttons

源码

//TODO 代码中的成员:数据和操作
console.log(1);
// !(1) 数据
10;
20;
// 第一步:变量声明
let a;
let b;
//
第二部:执行,赋值(第一次:初始化)
a = 10;
b = 20;
//第二次赋值是更新/修改
a = 15;
//删除
//a = null;
console.log(a, b);
//let a;
//变量禁止重复声明
//—————————————————————————-/
//!(2)操作
//代码块
{
a + b;
}
//复用代码
//1.声明过程
//2.执行过程
//
1.声明函数
//function :声明函数
//sum:函数名称
//(a,b)参数列表
//return:返回结果
function sum(a,b){
return a + b;
//下面这条语句永不执行,因为上面return
console.log(123);
}
//*2.调用函数
console.log(sum(a,b));
a = 30;
b = 50;
console.log(sum(a,b));

//TODO 代码中的成员:数据和操作
console.log(1);
// !(1) 数据
10;
20;
// 第一步:变量声明
let a;
let b;
//
第二部:执行,赋值(第一次:初始化)
a = 10;
b = 20;
//第二次赋值是更新/修改
a = 15;
//删除
//a = null;
console.log(a, b);
//let a;
//变量禁止重复声明
//—————————————————————————-/
//!(2)操作
//代码块
{
a + b;
}
//复用代码
//1.声明过程
//2.执行过程
//
1.声明函数
//function :声明函数
//sum:函数名称
//(a,b)参数列表
//return:返回结果
function sum(a,b){
return a + b;
//下面这条语句永不执行,因为上面return
console.log(123);
}
//2.调用函数
console.log(sum(a,b));
a = 30;
b = 50;
console.log(sum(a,b));
//todo 常量
//当一个数据,需要在多处被引用,为了防止引用时数据不一致,需要将它的值固定下来
//声明
const APP_NAME = “在线商城”;
//使用
console.log(APP_NAME);
//常量不可变,禁止更新
//尽可能使用常量,除非这个值用到循环变量,或者肯定被更新,才用变量
//
标识符
//必须是:字母,数字,下划线“_”,“$”,其它字符均是非法符号
//首字母不能使用“数字”

Correcting teacher:PHPzPHPz

Correction status:unqualified

Teacher's comments:作业使用markdown语法,代码放入代码块中,如果不会使用可以找一下助教
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!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post