Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

누군가 JavaScript에서 변수 앞에 더하기 기호가 무엇인지 설명해 줄 수 있습니까?

<시간/>

변수 앞의 더하기(+) 기호는 사용할 변수가 숫자 변수임을 정의합니다.

아래 코드에는 더하기 기호에 대한 간략한 설명이 있습니다. 다음은 코드입니다 -

예시

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);

위의 프로그램을 실행하려면 다음 명령을 사용해야 합니다 -

node fileName.js.

출력

여기에서 내 파일 이름은 demo149.js입니다. 이것은 다음과 같은 출력을 생성합니다 -

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