Blogger Information
Blog 45
fans 0
comment 1
visits 33106
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
对while,对象字面量,函数表达式的运用示例
源逸
Original
620 people have browsed it

1.while也是一个循环语句,但是它的使用场景是:入口判断,如果条件不满足就不执行循环体

2.对象创建最简单就是对象字面量

3.函数创建有:函数表达式,全局函数,构造函数

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>while循环遍历数组求奇数,创建对象字面量,函数表达式求三个数的和(运用到while,创建一个对象字面量,求函数表达式的和)2019.05.06</title>
</head>
<body>
<script>
	//判断数组中是奇数的输出
 	var n = 0;
 	var arr= [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20];
 	
 	while(arr[n] < arr.length){
 		if(arr[n] % 2 === 1){
 			document.write('奇数:' + arr[n] + ',');
 		}
 		n += 1;
 	}

 	document.write('<hr>');

 	//创建对象字面量
 	var iphone = {
 		'brand' : 'Apple',
 		'cpu' : 'A13',
 		'type' : 'iphone-XR',
 		'size' : '1990*600'
 	};

 	var x;//当作数组中的下标使用,也可以理解成对象中的键名
 	//循环输出对象中的键值
 	for(x in iphone){
 		var str = iphone[x];
 		document.write(str+',');
 	}
 	document.write('<hr>');

 	//函数表达式,计算函数表达式的三个数的和
 	var f1 = function(x,y,z){
 		return x+y+z;
 	};
 	document.write(f1(10,20,30));//调用函数传参计算
</script>
</body>
</html>
0506作业示例图.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
Author's latest blog post