国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

轉(zhuǎn)載:《44個Javascript{{BANNED}}題》

BDEEFE / 2134人閱讀

摘要:第題第題第題第題第題第題第題第題第題第題第題第題第題第題第題第題第題第題第題第題第題第題屬性是中可表示的最小的數(shù)接近,但不是負(fù)數(shù)。

第1題
["1","2","3"].map(parseInt);
第2題
[typeof null,null instanceOf Object]
第3題
[[3,2,1].reduce(Math.pow),[].reduce(Math.pow)]
第4題
var val = "smtg";
console.log("value is" + (val === "smtg") ? "Something" : "Nothing");
第5題
var name = "World";
(function(){
    if (typeof name === "undefined") {
        var name = "jack";
        console.log("Goodbye" + name);
    } else {
        console.log("Hello" + name);
    }
})();
第6題
var END = Math.pow(2,53);
var START = END - 100;
var count = 0;
for(var i = START; i <= END; i++){
    count++;
}
console.log(count);
第7題
var arr = [0,1,2];
arr[10] = 10;
arr.filter(function(x){ return x === undefined});
第8題
var two = 0.2;
var one = 0.1;
var eight = 0.8;
var six = 0.6;
[two - one == one, eight - six == two]
第9題
function showCase(value){
    switch(value){
        case "A":
            console.log("Case A");
            break;
        case "B":
            console.log("Case B");
            break;
        case undefined:
            console.log("undefined");
            break;
        default:
            console.log("unknown");
            break;
    }
}

showCase(new String("A"))
第10題
function showCase(value){
    switch(value){
        case "A":
            console.log("Case A");
            break;
        case "B":
            console.log("Case B");
            break;
        case undefined:
            console.log("undefined");
            break;
        default:
            console.log("unknown");
            break;
    }
}

showCase(String("A"))
第11題
function isOdd(num){
    return num % 2 == 1;
}
function isEven(num){
    return num % 2 == 0;
}
function isSane(num){
    return isEven(num) || isOdd(num);
}

var values = [7, 4, "13", -9, Infinity];
values.map(isSane);
第12題
Array.isArray(Array.prototype);
第13題
var a = [0];
if([0]){
    console.log(a == true);
}else{
    console.log("wut");
}
第14題
parseInt(3, 8);
parseInt(3, 2);
parseInt(3, 0);
第15題
[] == [];
第16題
"5" + 3;
"5" - 3;
第17題
1 + - + + + - + 1
第18題
var arr = Array(3);
arr[0] = 2;
arr.map(function(item){
    return "1";
});
第19題
function sidEffecting(arr){
    arr[0] = arr[2];
}
function bar(a, b, c){
    c = 10;
    sidEffecting(arguments);
    return a + b + c;
}
bar(1,1,1);
第20題
var a = 11111111111111000;
var b = 111;
console.log(a + b);
第21題
var x = [].reverse;
x();
第22題
Number.MIN_VALUE > 0;
// MIN_VALUE 屬性是 JavaScript 中可表示的最小的數(shù)(接近 0 ,但不是負(fù)數(shù))。它的近似值為 5 x 10-324
第23題
[1 < 2 < 3, 3 < 2 < 1];
第24題
2 == [[[2]]]
第25題
3.toString();
3..toString();
3...toString();
第26題
(function(){
    var x = y = 1;
})();
x;
y;
第27題
var a = /123/;
var b = /123/;
a == b;
a === b;
第28題
var a = [1, 2, 3];
var b = [1, 2, 3];
var c = [1, 2, 4];
a == b;
a === b;
a > c;
a < c;
第29題
var a = {};
var b = Object.prototype;
[a.prototype === b, Object.getPrototypeOf(a) === b];
第30題
function f(){};
var a = f.prototype, b = Object.getPrototypeOf(f);
a === b;
第31題
function foo(){}
var oldName = foo.name;
foo.name = "bar";
[oldName, foo.name];
第32題
"1 2 3".replace(/d/g,parseInt);
第33題
function f(){}
var parent = Object.getPrototypeOf(f);
f.name; //?
parent.name; //?
typeof eval(f.name) //?
typeof eval(parent.name) //?
第34題
var lowerCaseOnly = /^[a-z]+$/;
[lowerCaseOnly.test(null), lowerCaseOnly.test()];
第35題
[,,,].join(", ");
第36題
var a = {class:"Animal", name:"Fido"};
a.class;
第37題
var a = new Date("epoch");
第38題
var a = Function.length;
var b = new Function().length;
a === b;
第39題
var b = Date(0);
var b = new Date(0);
var c = new Date();
[a === b, b === c, a === c]
第40題
var min = Math.min(), max = Math.max();
min < max;
第41題
function captureOne(re, str){
    var match = re.exec(str);
    return match && match[1];
}
var numRe = /num=(d+)/ig;
var wordRe = /word=(w+)/i;

a1 = captureOne(numRe, "num=1");
a2 = captureOne(wordRe, "word=1");
a3 = captureOne(numRe, "NUM=2");
a4 = captureOne(wordRe, "WORD=2");

[a1 === a2, a3 === a4]
第42題
var a= new Date("2014-03-19");
var b =new Date(2014, 03, 19);
[a.getDay() === b.getDay(), a.getMonth() === b.getMonth()]
第43題
if("http://xxxgif.com/picture.jpg".match(".gif")){
    "a gif file"
}else{
    "note a git file"
}
第44題
function foo(a){
    var a;
    return a;
}
function bar(a){
    var a = "bye";
    return a;
}
[foo("hello"),bar("hello")];

本文僅供分享學(xué)習(xí)使用
如果您發(fā)現(xiàn)侵犯了您的權(quán)益,請及時告知本人,以便及時刪除該文章。

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/79893.html

相關(guān)文章

  • 實用性前端知識 - 收藏集 - 掘金

    摘要:與面向?qū)ο缶幊塘蠓较蛑阃黄魄岸松钠脚_期前端掘金無論我們從事何種職業(yè),在職業(yè)生涯的某個階段,都或多或少會遇到所謂的平臺期。目前為止,已經(jīng)有個用戶通過認(rèn)證登觀點年前端初學(xué)者的生存指南前端掘金逝者如斯夫,不舍晝夜。 你可能聽說過函數(shù)式編程(Functional programming),甚至已經(jīng)使用了一段時間。 但是,你能說清楚,它到底是什么嗎? 網(wǎng)上搜索一下,你會輕松找到好多答案...

    Honwhy 評論0 收藏0
  • 深入理解js

    摘要:詳解十大常用設(shè)計模式力薦深度好文深入理解大設(shè)計模式收集各種疑難雜癥的問題集錦關(guān)于,工作和學(xué)習(xí)過程中遇到過許多問題,也解答過許多別人的問題。介紹了的內(nèi)存管理。 延遲加載 (Lazyload) 三種實現(xiàn)方式 延遲加載也稱為惰性加載,即在長網(wǎng)頁中延遲加載圖像。用戶滾動到它們之前,視口外的圖像不會加載。本文詳細(xì)介紹了三種延遲加載的實現(xiàn)方式。 詳解 Javascript十大常用設(shè)計模式 力薦~ ...

    caikeal 評論0 收藏0
  • 44JavaScript變態(tài)解析

    摘要:第題知識點首先接受兩個參數(shù)一個回調(diào)函數(shù)一個回調(diào)函數(shù)的值其中回調(diào)函數(shù)接受三個參數(shù)而題目中只傳入了回調(diào)函數(shù)其次只接受兩個兩個參數(shù)基數(shù)可選。 第1題 [1, 2, 3].map(parseInt) 知識點: Array/map Number/parseInt JavaScript parseInt 首先, map接受兩個參數(shù), 一個回調(diào)函數(shù) callback, 一個回調(diào)函數(shù)的this值 ...

    aikin 評論0 收藏0
  • 大前端 - 收藏集 - 掘金

    摘要:是目前唯一一個支持同步調(diào)用的跨平臺年度上最多的個項目前端掘金年接近尾聲,在最近的幾篇文章中,會整理總結(jié)一些年度開源項目。 JS 全棧教程 - 前端 - 掘金本課程是基于阮一峰的 js 全棧教程的視頻版本,免費供大家觀看... 2016 年 10 個最佳的 CodePen 作品 - 前端 - 掘金說到 CodePen,前端開發(fā)者們肯定不會陌生。如果說 Dribbble 是設(shè)計師們聚集的圣...

    honhon 評論0 收藏0

發(fā)表評論

0條評論

最新活動
閱讀需要支付1元查看
<