Node.jsでprintf風の文字列フォーマットをするには、util.format
関数を使うと良い。
const {format} = require('util')
const message = format('値は %s のうちのどれかにしてください', [1, 2, 3])
console.log(message)
//=> 値は [ 1, 2, 3 ] のうちのどれかにしてください
公式ドキュメント: Util | Node.js v13.11.0 Documentation
Go to list of users who liked
More than 3 years have passed since last update.
Node.jsでprintf風の文字列フォーマットをするには、util.format
関数を使うと良い。
const {format} = require('util')
const message = format('値は %s のうちのどれかにしてください', [1, 2, 3])
console.log(message)
//=> 値は [ 1, 2, 3 ] のうちのどれかにしてください
公式ドキュメント: Util | Node.js v13.11.0 Documentation
Register as a new user and use Qiita more conveniently
Go to list of users who liked