filmov
tv
JavaScript Reverse for loop | Reverse for loop in JavaScript - JavaScript Tutorial 42

Показать описание
Notes for You:: JavaScript Reverse for loop
Example Code: Display 10 to 1 in JavaScript
for(var i=10; i>=1; i--)
{
}
Output:
10
9
8
7
6
5
4
3
2
1
Example Code: Display reverse multiplication table in JavaScript
var num=2;
for(var i=10; i>=1; i--)
{
}
Output:
2x10=20
2x9=18
2x8=16
2x7=14
2x6=12
2x5=10
2x4=8
2x3=6
2x2=4
2x1=2
Note:
- replace < with less-than symbol
- replace > with greater-than symbol
=========================================
Follow the link for next video:
JavaScript Tutorial 43 - while loop in JavaScript | JavaScript while loop
Follow the link for previous video:
JavaScript Tutorial 41 - Forward for loop in JavaScript | JavaScript Forward for loop
=========================================
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
Example Code: Display 10 to 1 in JavaScript
for(var i=10; i>=1; i--)
{
}
Output:
10
9
8
7
6
5
4
3
2
1
Example Code: Display reverse multiplication table in JavaScript
var num=2;
for(var i=10; i>=1; i--)
{
}
Output:
2x10=20
2x9=18
2x8=16
2x7=14
2x6=12
2x5=10
2x4=8
2x3=6
2x2=4
2x1=2
Note:
- replace < with less-than symbol
- replace > with greater-than symbol
=========================================
Follow the link for next video:
JavaScript Tutorial 43 - while loop in JavaScript | JavaScript while loop
Follow the link for previous video:
JavaScript Tutorial 41 - Forward for loop in JavaScript | JavaScript Forward for loop
=========================================
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
Комментарии