Computer >> Máy Tính >  >> Lập trình >> Javascript

Ai đó có thể giải thích cho tôi biết dấu cộng là gì trước các biến trong JavaScript không?

Dấu cộng (+) trước các biến xác định rằng biến bạn sẽ sử dụng là một biến số.

Trong đoạn mã dưới đây, có mô tả ngắn gọn về dấu cộng. Sau đây là mã -

Ví dụ

var firstValue="1000";
console.log("The data type of firstValue ="+typeof firstValues);
var secondValue=1000;
console.log("The data type of secondValue ="+typeof secondValue);
console.log("The data type of firstValue when + sign is used ="+typeof
+firstValue);
var output=+firstValue + secondValue;
console.log("Addition is="+output);

Để chạy chương trình trên, bạn cần sử dụng lệnh sau -

node fileName.js.

Đầu ra

Ở đây, tên tệp của tôi là demo149.js. Điều này sẽ tạo ra kết quả sau -

PS C:\Users\Amit\JavaScript-code> node demo149.js
The data type of firstValue =string
The data type of secondValue =number
The data type of firstValue when + sign is used =number
Addition is=2000