ভেরিয়েবলের আগে প্লাস(+) চিহ্নটি সংজ্ঞায়িত করে যে আপনি যে ভেরিয়েবলটি ব্যবহার করতে যাচ্ছেন সেটি একটি সংখ্যা পরিবর্তনশীল।
নীচের কোডে, প্লাস চিহ্ন সম্পর্কে সংক্ষিপ্ত বিবরণ রয়েছে। নিম্নলিখিত কোড -
উদাহরণ
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