console中的%d %s等占位符

前端开发中经常用到浏览器的console控制台,
而在console.logconsole.debug中有时候可以看见%d %s这样的符号,其意义和用法如下

占位符含义

  • %s for a String value 代表字符串
  • %d%i for a Integer value 代表整数
  • %f for a Floating point number 代表浮点数
  • %o for an Object hyperlink 代表对象的超链接

例子


var name = "David";
var num = 24;
var height = 180.5;
var obj = {
    job: 'web developer',
};

console.log('%s is %d years old, and he is %fcm tall.\nMore details in:  %o', name, num, height, obj);

《console中的%d %s等占位符》

参考

https://stackoverflow.com/que…
https://blog.csdn.net/linusc/…

    原文作者:OceanZH
    原文地址: https://segmentfault.com/a/1190000019667016
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞