CHAPTER - 7
JAVASCRIPT OPERATORS
Operators in JavaScript are very similar to operators that appear in other programming languages. The definition of an operator is a symbol that is used to perform an operation. Most often these operations are arithmetic (addition, subtraction, etc.), but not always.
Javascript arithmetic operator chart
COMPARISON OPERATORS
SIMPLE PROGRAM
<!DOCTYPE html>
<html><body>
<h1>FIRST JAVASCRIPT PAGE</h1>
<script>
document.write("<p>My First JavaScript</p>");
</script>
</body>
</html>
Comments
Post a Comment