We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
答案是自己写的,如有错误欢迎指正。
The text was updated successfully, but these errors were encountered:
字符串有最大长度吗?
字符串的最大长度,实际上是受字符串的编码长度影响的。
0.1 + 0.2 为什么不等于 0.3 ?
JavaScript 中的 Number ,它的实现遵循 IEEE 754 标准,使用 64 位固定长度来表示,也就是标准的 double 双精度浮点数。
详细内容在JavaScript 的精确计算
ES6 新加入的 Symbol 是个什么东西?
ES6 引入了一种新的原始数据类型Symbol,表示独一无二的值。Symbol 可以具有字符串类型的描述,但是即使描述相同,Symbol 也不相等。
Symbol
为什么给对象添加的方法能用在基本类型上?
. 运算符提供了装箱操作,它会根据基础类型构造一个临时对象,使得我们能在基础类型上调用对应对象的方法。
.
Sorry, something went wrong.
No branches or pull requests
答案是自己写的,如有错误欢迎指正。
The text was updated successfully, but these errors were encountered: