Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

Count Backwards With a For Loop

var myArray = [];
for (var i = 9; i > 0; i -= 2){
    myArray.push(i);
}
console.log(myArray); // console output [ 9, 7, 5, 3, 1 ]
Comment

PREVIOUS NEXT
Code Example
Javascript :: how to get prime numbers in javascript 
Javascript :: discord.js leave guild 
Javascript :: save list of dictionaries to json python 
Javascript :: find a value in an array of objects in javascript 
Javascript :: select2 preselect option 
Javascript :: bootstrap modal popup disable click outside 
Javascript :: add a trailing slash javascript url 
Javascript :: javascript find number in string 
Javascript :: useFetch custom hook for React 
Javascript :: how to get url query string value in javascript 
Javascript :: this.$router.push nuxt 
Javascript :: add search query in express 
Javascript :: date to seconds js 
Javascript :: line break in react 
Javascript :: javascript word start with 
Javascript :: first x characters of string javascript 
Javascript :: H. Nazmul 
Javascript :: stack implementation in javascript using array 
Javascript :: lottie delay between loops 
Javascript :: auto clicker for cookie clicker 2 
Javascript :: react native curved view 
Javascript :: radio button default checked react 
Javascript :: detect touch react 
Javascript :: how to simulate a keypress in javascript 
Javascript :: change list of objects to list js 
Javascript :: jquery change selected option 
Javascript :: redirect to different page in javascript 
Javascript :: function expression and function declaration 
Javascript :: enzyme debug 
Javascript :: Error: [ProtectedRoute] is not a <Route component 
ADD CONTENT
Topic
Content
Source link
Name
4+4 =