
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Addition Operator (+) in JavaScript
The addition operator is used to add two operands.
Example
You can try to run the following code to work with Addition Operator −
<html> <body> <script> var a = 33; var b = 10; document.write("a + b = "); result =a + b; document.write(result); </script> </body> </html>
Advertisements