北京一家做AI生物医疗的新公司,技术一面,15k-25k 16薪,要求1-3年
jslet x = 10;
function fn() {
let x = 30;
return function() {
console.log(x);
}
}
jslet zhangsan = {
name: '张三',
sayHi(){
console.log('sayHi', this.name);
},
wait() {
setTimeout(() => {
console.log('wait', this.name)
})
},
waitAgain() {
setTimeout(function() {
console.log('waitAgain', this.name);
})
},
get: () => {
console.log('get', this.name);
}
}
zhangsan.sayHi();
zhangsan.wait();
zhangsan.waitAgain();
zhangsan.get();
大概就这些,css和js的基础问的比较多,感觉回到了校招
本文作者:CreatorRay
本文链接:
版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!