如何在 javascript 中将字符串转换为长字符串?

我需要将一个毫秒时间戳从字符串转换为长时间戳。JavaScript 有一个 parseInt,但没有一个 parseLong。那我该怎么做呢?

稍微扩展一下我的问题: 既然 JavaScript 显然没有长类型,那么如何使用最初表示为字符串的长类型进行简单的算术呢?一个减去另一个得到时间差?

237859 次浏览

JavaScript has a Number type which is a 64 bit floating point number*.

If you're looking to convert a string to a number, use

  1. either parseInt or parseFloat. If using parseInt, I'd recommend always passing the radix too.
  2. use the Unary + operator e.g. +"123456"
  3. use the Number constructor e.g. var n = Number("12343")

*there are situations where the number will internally be held as an integer.

BigInt("1274836528318476135")