徐徐爱coding
  • 首页
  • 爱情买卖
  • 导航
  • 私语
  • 友情链接
  • 关于
    关于本站
    知识库
    弹钢琴
徐徐爱coding

徐徐爱coding

徐徐爱coding是一个个人博客站点,记录编程经历的点点滴滴,分享自己的所见与所得,坚持自己的初心,践行自己的梦想生活不是等着暴风雨过去,而是学会在风雨中跳舞!

Copyright © 2023 徐徐爱coding All Rights Reserved.
陕公网安备61019602000456陕ICP备2023007787号-2

网站已稳定运行

模版字符串的函数特性

模版字符串的函数特性

徐徐
前端
#javascript
0 热度0 评论1 点赞
发布于2024-11-15 17:24:52
🌺前言
你不知道的模板字符串

javascript
      function customTag(strings, ...values) {
            console.log(strings,values);// ["Name: ",", Age: ",""] ["Alice",30]
            let result = "";
            strings.forEach((string, index) => {
                result += string;
                if (index < values.length) {
                    result += values[index];
                }
            });
            return result.toUpperCase();
        }

        const name = "Alice";
        const age = 30;

        const formattedString = customTag`Name: ${name}, Age: ${age}`;

        console.log(formattedString); // 输出 "NAME: ALICE, AGE: 30"
文章最后更新于 2024-11-15 17:24:52
作者:徐徐
版权声明:转载请注明文章出处
留言
暂无数据

~~空空如也