摘要:
前言 我是歌谣 最好的种树是十年前 其次是现在 今天继续给大家带来的是构造函数和实例化原理的讲解 环境配置 npm init -y yarn add vite -D 修改page.json配置端口 { "name": "demo1", "version": "1.0.0", "description 阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:
var test=(function(a,b){ console.log(a,b) return a+b }(1,2)) console.log(test) 运行结果 阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:
前言 我是歌谣 最好的种树是十年前 其次是现在 今天继续给大家带来的是作用域的讲解 环境配置 npm init -y yarn add vite -D 修改page.json配置端口 { "name": "demo1", "version": "1.0.0", "description": "", 阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:
function sunSched(){ var sunSched='' var opration={ setSched:function(thing){ sunSched=thing }, showSched:function(){ console.log("MY schedule on sund 阅读全文
摘要:
阅读全文
摘要:
function sunSched(thing){ var sunSched='' var opration={ setSched:function(){ sunSched=thing }, showSched:function(){ console.log("MY schedule on sund 阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:
function breadMsg(num) { var breadNum = arguments[0] || 10 function supply() { breadNum += 10 console.log(breadNum) } function sale() { breadNum -= 10 阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:
function test(){ var n=100 function add(){ n++ console.log(n) } function reduce(){ n-- console.log(n) } return [add,reduce] } var arr=test() arr[0]() 阅读全文
摘要:
阅读全文