This document contains an introduction of basic JavaScript concepts including variables, operators, comments, conditional statements, and loops. It was presented by Assem Salem and Mahmoud Bahaa El-Din. Examples are provided for declaring variables, using operators like addition and modulus, writing single-line and multi-line comments, if/else conditional blocks, while loops, and for loops. The document concludes by inviting the audience to code and asking if there are any questions.
4. Operators
+ - * / %
Adding Strings: Adding Values:
var moderator =¡°Bahaa¡±;
var Moderator= ¡°Assem¡±;
var show_names= moderator + ¡° ¡± +
Moderator;
var x = 10;
var y = 1;
x++;
y--;
var z = x % y ;
document.write(z);