JS Home Virtual Asistant November 25, 2017JavaScript Tutorial JavaScript is the programming language of HTML and the Web. JavaScript is easy to learn. This tutorial will teach you Ja... Read more
JS Introduction Virtual Asistant November 25, 2017JavaScript Introduction This page contains some examples of what JavaScript can do. JavaScript Can Change HTML Content One of many JavaScrip... Read more
JS Where To Virtual Asistant November 25, 2017JavaScript Where To The <script> Tag In HTML, JavaScript code must be inserted between <script> and </script> tags. Exampl... Read more
JS Output Virtual Asistant November 25, 2017JavaScript Output JavaScript Display Possibilities JavaScript can "display" data in different ways: Writing into an HTML element, ... Read more
JS Syntax Virtual Asistant November 25, 2017JavaScript Syntax JavaScript syntax is the set of rules, how JavaScript programs are constructed. JavaScript Programs A computer program i... Read more
JS Statements Virtual Asistant November 25, 2017JavaScript Statements In HTML, JavaScript statements are "instructions" to be "executed" by the web browser. JavaScript ... Read more
JS Comments Virtual Asistant November 25, 2017JavaScript Comments JavaScript comments can be used to explain JavaScript code, and to make it more readable. JavaScript comments can also b... Read more
JS Variables Virtual Asistant November 25, 2017JavaScript Variables JavaScript variables are containers for storing data values. In this example, x, y, and z, are variables: Example <!... Read more
JS Operators Virtual Asistant November 25, 2017JavaScript Operators Example Assign values to variables and add them together: <!DOCTYPE html> <html> <body> <h2>Ja... Read more
JS Arithmetic Virtual Asistant November 25, 2017JavaScript Arithmetic JavaScript Arithmetic Operators Arithmetic operators perform arithmetic on numbers (literals or variables). Operator D... Read more
JS Assignment Virtual Asistant November 25, 2017JavaScript Assignment JavaScript Assignment Operators Assignment operators assign values to JavaScript variables. Operator Example Same As =... Read more