Blogger Information
Blog 32
fans 0
comment 0
visits 28184
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
JavaScript循环,对象与函数(while循环,字面量与函数创建)--2019年5月6日
ChenPJ的博客
Original
688 people have browsed it

1,写一个while循环, 输出一个数值数组所有的奇数

只要指定条件为 true,循环就可以一直执行代码。本示例利用while循环,用数组长度做循环计数,遍历数组,找出其中的奇数。

实例

   var arr_01=[11,15,22,23,27,30,31,32,36,38];
   var arr_02=[];
   var i=0;
   var j=0;
   var k=arr_01.length; 
   while(i<k){
    if (arr_01[i]%2>0){           //对数组元素进行求余运算,找出奇数
     arr_02[j]=arr_01[i];
     j+=1;
    }
    i+=1;
   }
   console.log("数组中的所有数字:"+arr_01);
   console.log("数组中的所有奇数:"+arr_02);

运行实例 »

点击 "运行实例" 按钮查看在线实例

 
   

2, 写一个对象字面量, 描述一款你喜欢的手机信息

javascript对象字面量,就是不使用new操作符而直接创建的对象实例。

   

实例

   //定义对象字面量
   var smartPhone={
     brand:"apple",
     model:"XS MAX",
     color:"white",
     romsize:"256GB"  
   }
   //在控制台输出对象字段
   console.log("手机***:"+smartPhone.brand);
   console.log("手机型号:"+smartPhone.model);

运行实例 »

点击 "运行实例" 按钮查看在线实例

   
3, 写一个函数表达式, 计算三个数之和

创建一个函数,完成三个数相加,结果输出到控制台。
   

实例

   
   var sum=function(i,j,k){
    console.log(i+"+"+j+"+"+k+"="+(i+k+j));   //在控制台输出三个参数的和
   }
   sum(5,9,3);   //调用sum函数

运行实例 »

点击 "运行实例" 按钮查看在线实例

以上三个实例的运行截图。

批注 2019-05-08 135415.png

Correction status:Uncorrected

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments