Voulez-vous découper chaque chaîne dans un tableau, par exemple, étant donné
x = [' aa ', ' bb '];
la sortie
['aa', 'bb']
Mon premier essai est
x.map(String.prototype.trim.apply)
J'ai eu une "TypeError: Function.prototype.apply was called on undefined, which is a undefined and not a function" dans chromium.
Ensuite, j'ai essayé
x.map(function(s) { return String.prototype.trim.apply(s); });
Cela fonctionne. Quelle est la différence?