|
|
|
|
|
by fs_tab
808 days ago
|
|
Somewhat related - be wary of implicit parameter passing in function pipelines. For example, Try ['10', '10', '10'].map(Number.parseInt) in your browser console. What's actually being called is: Number.parseInt('10', 0)
Number.parseInt('10', 1)
Number.parseInt('10', 2) |
|
JavaScript lacks typing, and then they decided on a weird signature for the callback...