String,毫秒数,类数组,正则:
String:
/* String对象用于处理文本 */
/* 参数要是存储在String对象中或者转换成原始字符串的值 */
/* 通过构造函数的方式也可以把数字类型转成字符串类型 */
/* let str = new String();
console.log(str) */
/* let str = 'hel low'; */
/* console.log(str); */
/* 属性length 字符串的长度 */
/* 整个字符串无论是内部空格还是外部空格都会算成长度 */
/* 字符串有length属性也会被遍历 */
/* charAt()返回指定位置的字符 */
/* 如果对应的位置找不到对应的字符,会返回一个空字符串 */
/* let index = str.charAt(0);
console.log(a) */
/* let newstr = str.concat('itty');
console.log(newstr) */
/* 会返回一个新的拼接好的字符串 */
/* replace会把原来字符串里面的字符替换成第二个参数里面的内容 */
/* let str = "hello world";
let a = str.replace('world','kitty')
console.log(a,str) */
/* 相比较sort,sort会对原数组造成影响 */
/* let str = 'abc123qwe'; */
/* /\d/正则表达式代表数字,代表字符串里面的第一个数字替换成nnn(1) */
/* /\d+表示匹配字符串里面所有数字都替换成nnn,当成一个整体(123)整体 */
/* /\d/g,'n'正则里面的g表示全局的意思,使用这种方法可以把字符串里面每个数组都变成n */
/* let a = str.replace(/\d+/,'n')
console.log(a) */
/* split()把一个字符串分割成字符串数组 */
/* 数组转字符串 */
/* let arr = [1,2,3];
let str = arr.join('-') */
/* let str = 'hello'; */
/* split()不加参数会把hello这个整体放到数组当中 */
/* str.split('')把hello这个字符串用空字符分别转换成数组 */
/* str.split(',')如果用字符串中不存在的字符分割那么还是会把整体放到数组当中 */
/* str.split('e')用e当作分隔符把字符串分割成数组 */
/* str.split('l') 用l当作分隔符会变成空字符串*/
/* let arr = str.split(',');
console.log(arr) */
/* indexOf() 返回某个指定的字符串值在字符串中 首次 出现的位置 */
/* let str = 'hello'; */
/* let index = str.indexOf('l')
console.log(index) */
/* lastIndexOf返回字符最后出现的位置 */
/* let index = str.lastIndexOf('l')
console.log(index) */
/* */
let str = 'HELLO'
let str2 = str.toLowerCase()/* 转换大写 */
let str = str.toUpperCase()/* 转换小写 */
String对象练习:
let str = 'abcdefg'
/* console.log(str.charAt(4)); */
/* let newstr = str.concat('aaa')
document.write(newstr) */
let a =str.replace('abcd','hello')
document.write(a,str)
时间对象毫秒数:
/* let d = new Date(); */
/* 返回1970年1月1日距现在的毫秒数 */
/* console.log(d.getTime());
let gd = d.getDate();
console.log(gd)
let sd=d.setDate(gd+6)
console.log(sd);
let dd = new Date(sd);
console.log(dd) */
/* new Date(毫秒数)通过这个毫秒数就可以得到毫秒数对应的事件对象 */
/* 利用这个时间对象就可以获得我们想要的时间信息(毫秒数对应的日期是星期几) */
/* setDate(多少号) 通过setDate就可以得到对应多少号的毫秒数*/
/* 通过毫秒数和new Date(毫秒数)结合用就能得到多少号的时间信息 */
/* 获得现在日期 */
let d = new Date();
/* 目的为了知道两头后星期几 */
let newDate = d.getDate()+3;
/* 两天后是多少号 */
console.log(newDate)
let haomiaoshu = d.setDate(newDate);
/* 把新的多少号塞到d.setDate当中,得到两天后的毫秒数 */
console.log(haomiaoshu);
/* 得到两天后的毫秒数 */
let newd = new Date(haomiaoshu);
/* 再把两天的毫秒数塞到newDate中获得最新的时间对象 */
console.log(newd.getDay)
/* 最后通过新的时间对象getDay的方法,得到两天后的是星期几 */
时间对象毫秒数练习:
let d = new Date();
let newDate = d.getDate()+5;
let haomiaoshu = d.setDate(newDate);
let newd = new Date(haomiaoshu);
document.write(newd.getDay())
类数组:
function fn(){
/* arguments 参数合计 是一个类数组 */
/* 类数组不具有数组的方法 比如push */
/* es6提供一个方法Array.from */
let arr = new Array()
/* 使用Array.from把类数组转换成真正的数组,就可以用数组的方法 */
let arr = Array.from(arguments);
arr.push(5)
console.log(arr)
}
正则:
/* let str = 'abc123qwe'; */
/* /\d/正则表达式代表数字,代表字符串里面的第一个数字替换成nnn(1) */
/* /\d+表示匹配字符串里面所有数字都替换成nnn,当成一个整体(123)整体 */
/* /\d/g,'n'正则里面的g表示全局的意思,使用这种方法可以把字符串里面每个数组都变成n */
/* let a = str.replace(/\d+/,'n')
console.log(a) */
/* match()可在字符串内检索指定的值,或找到一个或者多个正则表达式的匹配 */
let str = 'hello';
let a = str.match('o')
console.log(a)
/* str.match('o')使用match来检索o,可以知道o在字符串内的信息,以数组的形式返回
比如o所在的所有,o所在字符串和o长度 */
/* /\d/代表匹配一个数字g代表全局
总体来说就是在str字符串全局内去查找一个一个的数字
会以一个数组的形式方式 */
let a = str.match(/\d+/g)
console.log(a)