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
[1, NaN, NaN]
parseInt 作为 callback 参数传入map函数后,由于 parseInt 可以接受 2 个参数,所以会收到元素值和元素索引 2 个参数。
所以实际执行的 callback 如下:
parseInt(1,0) // 1 parseInt(2,1) // NaN parseInt(3,2) // NaN
The text was updated successfully, but these errors were encountered:
No branches or pull requests
output
分析
map
parseInt
结论
parseInt 作为 callback 参数传入map函数后,由于 parseInt 可以接受 2 个参数,所以会收到元素值和元素索引 2 个参数。
所以实际执行的 callback 如下:
The text was updated successfully, but these errors were encountered: