variables in js code example
Example 1: js variable
var Number = 5;
var String = "Hi!";
var boolen1 = true;
var boolen2 = false;
var array = [11, "Hi!", true];
var object = {age:11, speach:"Hi!", likes_Bananas:true};
Example 2: javascript declare a variable
var myVariable = 22;
let myVariable = 22;
const myVariable = 22;
Example 3: javascript variable
var user_name = prompt("Please enter your name:", "Type here");
alert("Hello " + user_name);
Example 4: variables in js
Variables can have anything, you define them as equal to something
eg: var x = 22
var statement = 'hello!'
var isAbool = true
there are three types of variables:
1. var
2. let
3. const
var is a normal variable
let is a variable whose value can be changed eg: let h = 12, h = 10(we changed the value, if you run this, there will be no error)
const is a variable whose value cannot be changed, if you change the value of a const, you will have errors in you code
Example 5: variables in js
var Hello = "World";
let bool = false;
const int = 8788;
Example 6: variable javascript
var variable-name = 'defenition of the variable';
let variable-name = 'defenition of the variable';