有没有办法在插入模式下跳转到下一个单词.在非插入模式或ctrl-left或ctrl-> right在windows中类似于"w"的东西?
给出以下示例:
isNaN("-0x123"); // returns true , meaning is not a number <- Why?
isNaN(-0x123); // returns false, meaning is a number
isNaN("0x123"); // returns false, meaning is a number
parseInt("-0x123"); // returns -291
Run Code Online (Sandbox Code Playgroud)
我的问题:为什么当其他类似的输入产生更合理的输出时,isNaN将负十六进制字符串声明为NaN?
谢谢