filmov
tv
Assignment Operators in JavaScript - JavaScript Tutorial 25
![preview_player](https://i.ytimg.com/vi/YCq5wDAtLSI/maxresdefault.jpg)
Показать описание
Notes for You:: Assignment Operators in JavaScript - JavaScript Tutorial 25
Assignment Operator (=):
- is used to assign a value to variable or a constant.
Short Hand Assignment Operators (SHAO):
- AAO (Arithmetic Assignment Operators)
+=
-=
*=
/=
%=
Example code:
const PI = 3.142;
var a = 10;
a = 20;
a += 10; // a = a + 10;
a-=10; // a = a - 10;
a*=2; // a = a * 2;
a/=2; // a = a / 2;
a%=2; // a = a % 2;
a += 10;
=========================================
Follow the link for next video:
JavaScript Tutorial 26 - Increment & Decrement Operators in JavaScript - Part 1
Follow the link for previous video:
JavaScript Tutorial 24 - Conditional Operator in JavaScript | JavaScript Ternary Operator
=========================================
JavaScript Tutorials Playlist:-
=========================================
Watch My Other Useful Tutorials:-
jQuery Tutorials Playlist:-
jQuery UI Tutorials Playlist:-
Bootstrap Tutorials Playlist:-
=========================================
► Subscribe to our YouTube channel:
► Visit our Website:
=========================================
Hash Tags:-
#ChidresTechTutorials #JavaScript #JavaScriptTutorial
Assignment Operator (=):
- is used to assign a value to variable or a constant.
Short Hand Assignment Operators (SHAO):
- AAO (Arithmetic Assignment Operators)
+=
-=
*=
/=
%=
Example code:
const PI = 3.142;
var a = 10;
a = 20;
a += 10; // a = a + 10;
a-=10; // a = a - 10;
a*=2; // a = a * 2;
a/=2; // a = a / 2;
a%=2; // a = a % 2;
a += 10;
=========================================
Follow the link for next video:
JavaScript Tutorial 26 - Increment & Decrement Operators in JavaScript - Part 1
Follow the link for previous video:
JavaScript Tutorial 24 - Conditional Operator in JavaScript | JavaScript Ternary Operator
=========================================
JavaScript Tutorials Playlist:-
=========================================
Watch My Other Useful Tutorials:-
jQuery Tutorials Playlist:-
jQuery UI Tutorials Playlist:-
Bootstrap Tutorials Playlist:-
=========================================
► Subscribe to our YouTube channel:
► Visit our Website:
=========================================
Hash Tags:-
#ChidresTechTutorials #JavaScript #JavaScriptTutorial
Комментарии