-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsol.js
More file actions
6 lines (5 loc) · 671 Bytes
/
Copy pathsol.js
File metadata and controls
6 lines (5 loc) · 671 Bytes
1
2
3
4
5
var itemslearnttillnow = ["Variable declaration", "Data types","String concatenation", "ParseInt()", "ParseFloat()", "toFixed()", "Math operations","Conditions", "Multiple conditions", "Multi stage conditions", "Array","Find array elements by index", "Find index by array element", "Array length", "Update array element", "Add element at the last of an array", "Add element at first of an array", "Remove the last element of an array", "Remove first element of an array", "While loop", "For loop", "Loop break", "Loop continue", "Loop reverse" ];
for(var i=0; i < itemslearnttillnow.length; i++){
var item = itemslearnttillnow[i];
console.log(i +". " + item);
}