Pourquoi ce travail (renvoie "un, deux, trois"):
var words = ['one', 'two', 'three'];
$("#main").append('<p>' + words.join(", ") + '</p>');
et ce travail (renvoie "la liste: 111"):
var displayIt = function() {
return 'the list: ' + arguments[0];
}
$("#main").append('<p>' + displayIt('111', '222', '333') + '</p>');
mais pas cette (retours à vide):
var displayIt = function() {
return 'the list: ' + arguments.join(",");
}
$("#main").append('<p>' + displayIt('111', '222', '333') + '</p>');
Que dois-je faire pour que mes "arguments" variable à utiliser .join() sur celui-ci?