Answers for "how to print certain elements of an array"

0

how to print certain elements of an array

var array = ['a','b','c','d','e','f','g']


for(var i = 0; i < array.length ; i++){
    if ((array[i] != 'b') && (array[i] != 'f')){
    console.log(array[i]) 
    }  
}
/*
if statement and u need && and number of statements needs same number of ()
every letter needs own statement and != means not 

*/
Posted by: Guest on June-05-2020

Code answers related to "how to print certain elements of an array"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language