0 Star 0 Fork 0

sylz/typescript_tutorial

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
test.js 840 Bytes
一键复制 编辑 原始数据 按行查看 历史
sylz 提交于 2022-04-20 21:36 . (#^.^#)
// let o = {}
// let r = 123
// Object.defineProperty(o, "n", {
// get: function () {
// return r;
// },
// set: function (val) {
// r = val;
// },
// enumerable: false, //不参与循环
// configurable: true
// });
// console.log(o.n); //123
// console.log(Object.keys(o)); //[] //也就说是不参与循环
//
// typeof a
/*console.log(NaN === NaN); //false
console.log(NaN !== NaN); //true
hasChanged = (value, oldValue) => value !== oldValue && (value === value/!*NaN!==NaN为true,但NaN===NaN为false*!/ || oldValue === oldValue)
console.log(hasChanged(NaN, NaN)); //false*/
const map = new Map();
map.set(0,'a')
map.set(1,'b')
map.set('length','xxx')
map.forEach((v,k)=>{
console.log('v:',v);
console.log('k:',k);
})
/*
v: a k: 0
v: b k: 1
v: xxx k: length
*/
console.log(typeof Object); //function
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Vennasia/typescript_tutorial.git
[email protected]:Vennasia/typescript_tutorial.git
Vennasia
typescript_tutorial
typescript_tutorial
master

搜索帮助