How To Print Certain Elements Of An Array

[Solved] How To Print Certain Elements Of An Array | Perl - Code Explorer | yomemimo.com
Question : how to print certain elements of an array

Answered by : powerful-peccary-nd4jz814en8d

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
*/

Source : | Last Update : Fri, 12 Jun 20

Answers related to how to print certain elements of an array

Code Explorer Popular Question For Perl