整理js的觀念文章後,在做網路上的典型題目
看看自己是否真的有了解
問題一:作用域(Scope)
console出來的值是多少?1
2
3
4
5(function() {
var a = b = 5;
})();
console.log(b);
問題二:創建原生方法
在String對象上創建一個repeatify
函數,接收的這個參數,代表要重複幾次。1
console.log('hello'.repeatify(3));
問題三:變量提升(Hoisting)
執行解過答案會是?1
2
3
4
5
6
7
8
9
10
11function test() {
console.log(a);
console.log(foo());
var a = 1;
function foo() {
return 2;
}
}
test();
問題四:在JavaScript中,this
是如何工作的?
console出來的結果?
能的話順便說出原因1
2
3
4
5
6
7
8
9
10
11
12
13
14var fullname = 'John Doe';
var obj = {
fullname: 'Colin Ihrig',
prop: {
fullname: 'Aurelio De Rosa',
getFullname: function() {
return this.fullname;
}
}
};
console.log(obj.prop.getFullname());
var test = obj.prop.getFullname;
console.log(test());
問題五:call() 和 apply()
承上題,讓最後一個console.log()
輸出Aurelio De Rosa
1
// todo
問題六:閉包(Closures)
點擊第一個Button及第四個Button,分別console出來的結果是?1
2
3
4
5
6var nodes = document.getElementsByTagName('button');
for (var i = 0; i < nodes.length; i++) {
nodes[i].addEventListener('click', function() {
console.log('You clicked element #' + i);
});
}
問題七:閉包(Closures)
承上題,點擊時第一個要輸出0,第二個要輸出1,依此類推。1
// todo
問題八:數據類型
1 | console.log(typeof null); |
問題九:事件循環
1 | function printing() { |
問題十:算法
寫出一個方法 isPrime()
的函數,當參數是值數時true
,否則回傳false
1
// todo