let arr = [0,1,2,3,5,6,85];
	// map依次取数组的值
 arr.map(function(item){
		console.log(item)
})