var news = [ '三大运营商:9月1日起取消手机国内漫游费', '华为上半年销售收入2831亿元 同比增长15%', '雪铁龙发动机质保期内异响不处理?车主不满自费维修', '四川强降雨1700余人受灾 1人因泥石流掩埋死亡', '麻雀急救同伴视频热传 专家:应该在争斗其中一只诈死', …
var arr = ['1','2','3','4','5','6','7','8'] arr.forEach(function(element,index,arr){ // forEach 让数组中每一项都执行给定的函数 // 这个函数接受三个参数 // curren…
var sec = document.createElement('section') sec.style.width = '300px'; sec.style.height = '300px'; sec.style.position = 'relative' sec.style.left = '200px' sec.style.top = '20…
var arr = [6,8,1,5,7,0,9] function bubbleSort(arr){ var len = arr.length; for (var i = 0; i < len; i++){ …
<div>1</div> <div>2</div> <div>3</div> <div>4</div> var array = new Array(4) array.push(1) array.push(4) array.push(3) array.pu…
console.log(Math.ceil(-2.1)) // Math.ceil() 天花板 向上取整 负数向上取整时相当于把小数部分扔掉 // 不存在四舍五入 返回的是数字 console.log(typeof Math.ceil(2.1)) console.log(Math.floor(2.1)) // floor 向下取整 负数向下取整时会…
var n = 3 var n1 = new Number(3) console.log(n) console.log(n1) var n2 = new Number('2016') console.log(n2) var n3 = new Number(true) console.log(n3.valueOf()) // 把对象的值转化为数字 如…
今天,深度科技官方放出了一个最新版15.4.1的演示视频,该视频可以帮助大家快速了解15.4.1的各项功能,小编废话少说,大家赶紧欣赏吧!
var str = String('今天天气好热') var str1 = new String('明天天气还热吗') var str2 = '你给我"aa"滚出去' var json = {'name':'22','age':3} var json2 = "{'name':'22','age':3}" console.log(json) cons…
console.log(true) console.log(!true) var a = 1,b = 2 console.log(!!(a + b)) var b = new Boolean('false') console.log(b) // b是一个布尔对象 而不是一个值 // b是一个包含一个true值的对象 可以将b当为一个盒子 // 当作…
<body> <div>这是DIV</div> <script> var a = '123' a +='456' // alert(a) // console.log('a:%s',a) // consol…