Airthmetic operator in JavaScript

Airthmetic operator in JavaScript The number which is called operands The operations between two operands are defined by operator Arithmetic operators are • Addition(+) the operations between two or more operands perform an Addition operation ( + ) Example : <!DOCTYPE html> <html> <body> <script>  var a=18;  var b=20;  document.write(a+b); </script> </body> </html> Output: 38 Continue reading

JavaScript Data Types

 JavaScript Data Types 1) String : which are used to store the data that involves the characters Example: var x=” Hello World”; Program: <!DOCTYPE html> <html> <body> <script>  var x=”Hello world”;  document.write(x);  document.write(“<br>”);  document.write(typeof x); </script> </body> </html> Output: Hello world String 2) Numbers : a numbers can be written with or without decimal Example Continue reading

Use of ‘Am’, ’Is’, ‘are’ Grammar

Use of ‘Am’, ’Is’, ‘are’ Grammar Affirmative sentences ( सकारात्मक वाक्य) जीन वाक्य में किसी सकारात्मक कार्य या वस्तु बारे में जानकारी दी जाती हैं,उन्हें affirmative sentences कहते हैं|   Word order: Subject + am/is/are+ complement Read the following sentences मैं एक ईमानदार व्यक्ति हूँ | = I am a honest person वह बहुत चालाक Continue reading