zoukankan      html  css  js  c++  java
  • ES6-字符串模板

    es6字符串模板
    // es5
    let ananiah = "大诶呀";
    let blog = "我要忘了你的样子"+ ananiah;
    console.log(blog); //我要忘了你的样子大诶呀
    
    // es6字符串模板
    let anania = "大诶呀";
    let blogs = `<b>我要忘</b><br>
    了你的样子${anania}`;
    document.write(blogs); //可以放HTML标签
    
    let a = 1;
    let b = 2;
    let result = `${a+b}`;
    document.write(result);  //3

    字符串查找

    // 字符串查找
    //es5
    let ananiahs = "大诶呀";
    let blogss = "我要忘了你的样子大诶呀";
    document.write(blogss.indexOf(ananiahs)); //8
    
    //es6
    let ananiahs6 = "大诶呀";
    let blogss6 = "大诶呀我要忘了你的样子大诶呀";
    document.write(blogss6.includes(ananiahs6)); //true 是否存在
    document.write(blogss6.startsWith(ananiahs6)); //true  头部是否存在
    document.write(blogss6.endsWith(ananiahs6)); //true  尾部是否存在

    字符串复制

    //字符串复制 repeat 方法
    document.write('ananiah |'.repeat(30)); //复制三十个
  • 相关阅读:
    总结-hexo部署
    core bluetooth详细介绍
    uitextFiled字数输入限制
    UIAlertAction 改变字体颜色
    iOS 10 获取相册相机权限
    选中某个单元格
    内购
    延迟执行
    GCD
    制作静态库
  • 原文地址:https://www.cnblogs.com/Ananiah/p/11067606.html
Copyright © 2011-2022 走看看