我有这个问题,我已经工作了几个小时而没有运气。我应该编写JavaScript代码,提示用户输入3个名字(一次一个)。程序应按升序对不同行上的名称进行排序和显示。
我可以让程序提示用户输入名称但是难以对它们进行排序并正确显示它们。
curl --data "To=+7145551212&From=+7145551&MediaURL=http://test.com/image.jpg" https://api.twilio.com/2010-04-01/Accounts/123456/Messages
答案 0 :(得分:2)
只需将名称放入数组中,然后使用Array.sort
对其进行排序。
// Create a new, empty array
var names = [];
// Prompt for the names and put each into the array:
names.push(prompt("Enter your first name:",""));
names.push(prompt("Enter your middle name:",""));
names.push(prompt("Enter your last name:",""));
// Sort the names:
names.sort();
// Print the results:
names.forEach(function(value){
console.log(value);
});