Saturday, 31 July 2021
JavaScript Playlist tutorial #14 | Full information on Arrow function and class @echocoding | soham
JavaScript tutorial #13 | loops in javascript @echocodin | soham kavde
JavaScript tutorial #12 | Conditional statements (if , else else if , switch ) @echocoding | soham
Monday, 26 July 2021
JavaScript tutorial #11 | Array in one video @echocoding | soham kavde
Saturday, 24 July 2021
JavaScript tutorial #10 | numbers and number method detailed video @echocoding | soham kavde
timestamps: number with or without decimal value 1:16 scientific notation in JavaScript 3:12 limitation of number 4:50 add number and string 6:00 number methods 13:40
number.js
JavaScript tutorial #9 | JavaScript Search text string method @echocoding | soham kawde
Thursday, 15 July 2021
JavaScript tutorial #8 | string properties , methods in javaScript @echocoding |soham kawde
string properties , methods in javaScript
JavaScript tutorial #7 | object and event in one video @echocoding | soham kawde
object and event
JavaScript tutorial #6 | JavaScript function , definition , caller @echocoding | soham kawe
JavaScript function , definition , caller
Operators in JavaScript #5 | JavaScript Operators in one video @echocoding | soham kawde
code source JavaScript Operators
timestamps: Arithmetic operators 00.01 Assignment operators 06.02 string operators 12.01 Comparison operators 14.32 logical operators 21.08 JavaScript Operators JavaScript Arithmetic Operators :- It is used to perform arithmetic operation on numbers and variables. Addition arithmetic operators (+) : With this operator programmer can add two values ; var a = 4+5; console.log(a); //Output : 9 Subtraction arithmetic operators ( - ) : With this operator programmer can subtract two values. var a = 5-4; console.log(a) // Output : 1 Multiplication arithmetic operators (*): this help a programmer to multiply two values; var a = 4*5; console.log(a) // Output: 20 Exponentiation arithmetic operators (**):By using this programmer can get output in Exponentiation form (23 ). Modulus (Division Remainder) arithmetic operators (%) : with this programmer divide two values and get remainder in the result. Increment arithmetic operators (++): this operator increase value by adding value 1 in existing value. Decrement arithmetic operators(--) this operator decrease value by adding value 1 in existing value. JavaScript Assignment Operators It assign value to left side varible or number from the right side variable or number on given condition. = assign operator : this assign right value to left side values or variables. += this operator add right side value to left side value. -= this operator substract right side value from left side value. *= this operator multiply right side value to left side value. /= this operator divided left side value from right side value. %= this operator give remainder by divided left side value from right side value. **= this operator give exponentiation result in the form of 23 . JavaScript string operator this helps to cancatenate (add) strigns. Adding string to number return string Javascript comparison operators If programmer wants to compare two or more than two values than comparison operator is used. If check both values and datatype. Equal to (==) It will return true if condition equal in value. Not equal (!=) it will return true if condition is not equal in values. Equal values and Equal datatype (===) it will return true if conditionn is equal both in values and datatype. Not equal values or not equal datatype (!==) it will return true if condition is not equal in values or datatypes terms. Greater than It will return true if first first variable or values is greater than second variable or values. Less than It will return true if first values or variable is less than second variable or values. Greater than or Equal to this will return true if first variable or value is greater than or Equal to second variable or values. Less than or Equal to this will return true if first variable or values is less than or equal to second variable or values. JavaScript Logical Operators && Logical and : this operator return true if each and every given condition is true. || logical or : this operator return true if any one of given condition is true. ! logical not : this will return true on false condition and false on true condition. JavaScript Type operators We can also find the type of data we used in programming By using typeof( ) function.
Sunday, 11 July 2021
JavaScript tutorial #4 | Difference between var , let , const @echocoding | soham kawde
Saturday, 10 July 2021
JavaScript tutorial #3 | Variable , datatypes , Complete information with rules @echocoding | soham
third.html
Variables
Imagine programmer has a glass of water So we can say glass is variable and water is value or data . As programmer imagine glass store water in the same way Varibles are also contain different different values.
Data Type
Data type are nothing but the type of data that a values contain.
like Int , float , string , boolean , arrays , objects , more...
"NO need to declared data type in JavaScript"
Rules in JavaScript to Declared varibles
1 Variables contains letters , underscores , digits and dollars sings.
2. Variables are start with letter , $ sign and _ underscore only.
3. Variables Name are CaseSensitive.
4. Reserved keywords (class , id , function) cannot used in javascript.
One statement and many variables
var programmar = "Rakesh" , class = "12th" , subject = "Maths";
or
var programmar = "Rakesh",
class ="12th",
subject = "Maths";
overriding in JavaScript
var person = "rohit";
person = "Rakesh";
Difference between var , let , const
var can reassinged values in same block scope or different block of scope , although It can assing values befor declared variables (hoisting is possible).
let can not reassinged values in same block scope but It can assing values in different block of scope.Hoisting is not possible(In let , variable can not assing values before let declaration).
const can not reassinged values in same block of scope but it can assing values in different block of scope. Hoisting is not possible (In let , variable can not assing values before let declaration).
Timestapms
Introduction and use of variable 00.01
Datatype 03.05
Rules to define variable name 05.40
One statement with multiple variables 07.50
Re-declaration of varialbes (Override variables) 09.48
-
code of the website video link https://www.youtube.com/watch?v=h7UoV1ACQ28&t=103s <! DOCTYPE html > < html lang = "e...
-
code source JavaScript Operators <! DOCTYPE html > < html lang = "en" > < head > < meta charset...