console.log([data][, ...args])
添加于:v0.1.100
参数
使用换行符打印到stdout
。可以传递多个参数,第一个用作主要消息,所有其他参数用作类似于
的替换值(所有参数都传递给 printf(3)
)。util.format()
const count = 5;
console.log('count: %d', count);
// Prints: count: 5, to stdout
console.log('count:', count);
// Prints: count: 5, to stdout
有关详细信息,请参阅
。util.format()
相关用法
- Node.js Console.timeLog([label][, ...data])用法及代码示例
- Node.js Console.countReset([label])用法及代码示例
- Node.js Console.trace([message][, ...args])用法及代码示例
- Node.js Console.timeEnd([label])用法及代码示例
- Node.js Console.assert(value[, ...message])用法及代码示例
- Node.js Console.count([label])用法及代码示例
- Node.js Console.table(tabularData[, properties])用法及代码示例
- Node.js Console.error([data][, ...args])用法及代码示例
- Node.js Console用法及代码示例
- Node.js MySQL Count()用法及代码示例
- Node.js CSV转Excel用法及代码示例
- Node.js Certificate.exportPublicKey(spkac[, encoding])用法及代码示例
- Node.js Channel.unsubscribe(onMessage)用法及代码示例
- Node.js MySQL CONCAT_WS()用法及代码示例
- Node.js Channel.hasSubscribers用法及代码示例
- Node.js Channel.publish(message)用法及代码示例
- Node.js MySQL CHARACTER_LENGTH()用法及代码示例
- Node.js Certificate.verifySpkac(spkac[, encoding])用法及代码示例
- Node.js MySQL CHAR_LENGTH()用法及代码示例
- Node.js Certificate.exportChallenge(spkac[, encoding])用法及代码示例
- Node.js ClientHttp2Session.request(headers[, options])用法及代码示例
- Node.js Cipher用法及代码示例
- Node.js Channel.subscribe(onMessage)用法及代码示例
- Node.js ServerHttp2Stream http2stream.pushStream(headers[, options], callback)用法及代码示例
- Node.js http2.Http2ServerRequest request.url用法及代码示例
注:本文由纯净天空筛选整理自nodejs.org大神的英文原创作品 Console.log([data][, ...args])。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。