Discuss / JavaScript / 我来交作业啦

我来交作业啦

Topic source
var n = 0;
do{
   var name = arr[n];
   var hello = 'Hello'+ name + '!';
   alert(hello);
   n = n + 1;
}while(n < arr.length);

  • 1

Reply