encodeURI(), decodeURI()它們都是Global對象的方法。css
; , / ? : @ & = + $
- _ . ! ~ * ' ( )
encodeURIComponent()
來編碼部分字符。- _ . ! ~ * ' ( )
linux文件和目錄的惟一標識符是什麼?html
inodes節點
其餘的見Githubnode
這個東西是最開始學習JavaScript瞭解了的,可是好久不看就有點兒記不清楚了。因此從新總結一下。linux
一共有三種系統對話框,以下:css3
// alert() // confirm('Are you a boy?') if(confirm('Are you a boy')) { console.log(true); } else { console.log(false); } // prompt(), 參數有兩個,第二個可選。 // 第一個參數顯示給用戶的提示信息,第二個參數是文本輸入域的默認值 var result = prompt('Please write your name:' + 'john'); var result2 = prompt('Please write your name:'); if(result2 !== null) { console.log(result2); }
'=='會轉型。git
'==='不會轉型。es6
0 == '0' // true 0 === '0' // false
Date.parse('1900-01-19'); // -2207433600000
建立一個日期對象, var now = new Date(), 新對象自動得到當前時間和對象。github
下列不是transition-timing-function的單位的是?canvas
(50|2 == 50) (50|16 == 50) (50|4 == 50) (50|32 == 50)
function a() { var arg = []; for(var i = 0;i < 10;i++) { arg[i] = function() { return i; }; } return arg; } a()[1](); // 10
var scope = 1; function p() { var scope; console.log(scope); scope = 3; } p(2); // 2