Node.js Util Module

❮ โมดูลในตัว


ตัวอย่าง

จัดรูปแบบสตริงโดยใช้อาร์กิวเมนต์ "Linus" และ "6":

var util = require('util');
var txt = 'Congratulate %s on his %dth birthday!';
var result = util.format(txt, 'Linus', 6);

console.log(result);

ความหมายและการใช้งาน

โมดูล Util ให้การเข้าถึงฟังก์ชันยูทิลิตี้บางอย่าง


ไวยากรณ์

ไวยากรณ์สำหรับการรวมโมดูล Util ในแอปพลิเคชันของคุณ:

var util = require('util');

ใช้คุณสมบัติและวิธีการ

Method Description
debuglog() Writes debug messages to the error object
deprecate() Marks the specified function as deprecated
format() Formats the specified string, using the specified arguments
inherits() Inherits methods from one function into another
inspect() Inspects the specified object and returns the object as a string

❮ โมดูลในตัว