javascript权威指南(2)
时间:2014-09-25 11:42:59
收藏:0
阅读:194
JavaScript预定义了一系列全局变量和函数,在自定义变量和函数式要避免使用这些预定义的名称:
arguments | encodeURI | Infinity | Number | RegExp |
Array | encodeURIComponent | isFinite | Object | String |
Boolean | Error | isNaN | parseFloat | SyntaxError |
Date | eval | JSON | parseInt | TypeError |
decodeURI | EvalError | Math | RangeError | undefined |
decodeURIComponent | Function | NaN | ReferenceError | URIError |
原文:http://www.cnblogs.com/thlzhf/p/3992305.html
评论(0)