JavaScript - 与 toString() 相反?

发布于 2024-10-11 14:13:14 字数 144 浏览 2 评论 0原文

当与数字一起使用时,toString() 方法使用可选基数指定的基本编号系统将数字转换为字符串表示形式。

例如数字 8 和 toString(2) 将返回“1000”。

有没有一种方法可以达到相反的效果?即,将字符串“1000”转换回数字8?

When used with numbers, the toString() method converts a number into a string representation using the base numbering system specified by the optional radix.

For instance the number 8 and toString(2) would return "1000".

Is there a method to achieve the opposite? I.e., convert the string "1000" back into the number 8?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

诠释孤独 2024-10-18 14:13:14

parseInt() 将基数作为第二个参数,因此您可以执行 parseInt("1000", 2) 来获得您想要的结果。

parseInt() takes a radix as its second argument, so you can do parseInt("1000", 2) to get what you want.

妞丶爷亲个 2024-10-18 14:13:14

您可以使用 raidx 2 来使用 parseInt。
IE

parseInt("1000", 2) will return 8

You can use parseInt using a raidx 2.
i.e

parseInt("1000", 2) will return 8
墨离汐 2024-10-18 14:13:14

检查 parseInt() Javascript 函数:
http://www.w3schools.com/jsref/jsref_parseInt.asp

Check the parseInt() Javascript function:
http://www.w3schools.com/jsref/jsref_parseInt.asp

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文