Để thay thế một giá trị nếu null hoặc không xác định, bạn có thể sử dụng cú pháp dưới đây -
var anyVariableName= null; var anyVariableName= yourVariableName|| anyValue;
Ví dụ
var value = null; console.log("The value ="+value) var actualValue = value || "This is the Correct Value"; console.log("The value="+actualValue);
Để chạy chương trình trên, bạn cần sử dụng lệnh sau -
node fileName.js.
Đây, tên tệp của tôi là demo56.js
Đầu ra
Điều này sẽ tạo ra kết quả sau -
PS C:\Users\Amit\JavaScript-code> node demo56.js The value =null The value=This is the Correct Value