如何使插值打印数据?


let Big = 11243566n;
console.log (' ${Big}  ${typeof Big}.');

控制台显示:

${Big} ${typeof Big}.

如何打印

11243566 [BigInt]

或类似的东西?

您必须使用`而不是单引号:

let Big = 11243566n;
console.log (` ${Big} ${typeof Big}.`);

相关内容

  • 没有找到相关文章