码迷,mamicode.com
首页 > 其他好文 > 详细

数美(sm)面经

时间:2020-04-24 21:47:41      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:prot   rom   null   on()   this   json   type   name   mis   

1、

console.log(1 && 0)
console.log(0 && 1)

2、

window.val = 1;
var json = {
    val: 10,
    dbl: function(){
        this.val *= 2;  
  }
};
json.dbl();
var dbl = json.dbl;
dbl();
json.dbl.call(window);
alert(window.val + json.val);

3、

var name = ‘Shumei‘;
(function(){
    if(typeof  name === ‘undefined‘){
         var name = ‘SM‘;
         console.log(‘Hello‘ + name);
    } else {
         console.log(‘Hello‘ + name);
    } 
}) ();

4、

function Test(name, age){
    this.name = name;
    if(age!= undefined){
          this.age = age;
?
    }
}
?
Test.prototype = {
    name: "SM",
    age: 18
};
?
var instance = new Test();
console.log(instance.name);
console.log(instance.age);
console.log(instance.constructor);

5、

console.log(null == undefined)
console.log(Boolean("false"))
console.log({} == 0)
console.log([] == 0)

6、

var a1 = [1,2];
var a2 = a1;
a1[0] = a2[1];
a2.push(3);

console.log(a1);
console.log(a2);

7、

setTimeout(function(){
   console.log(1)
}, 0);

new Promise(function(resolve, reject){
    var i = 0;
    console.log(2);
    while(i<100){
         i ++ ;
         i == 1 && resolve();
    }
    console.log(3);
}).then(function(){
    console.log(4)
});

console.log(5);

 

数美(sm)面经

标签:prot   rom   null   on()   this   json   type   name   mis   

原文地址:https://www.cnblogs.com/nini123123/p/12770045.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!