string对象
var str="hello word"
var str1=“hello,jike,nihao”
1.字符串的长度 str.indexof
2.match:内容匹配
3.replace:替换字符串str.replace("word","nihao");
4.toUpperCase()/toLowerCase:字符串大小写转换;
5.strong>split():字符串转为数组
var s=str1.spilt(",")
document.write(s[1])
DATA对象
var data=new data();
document.write(data):当前日期
获取年份:data.getfullYeal()
获取日期:data.gettime()
设置时间getfullYeal( 2010,1,1);
js 内置对象-Array数组对象
两个数组的合并: a.concat(b);
打印结果:
排序:sort;
加了函数的时候是升序
没有 添加的时候是54321降序
数组的追加:push
数组的翻转:reverse
a,b,c
浏览器对象