Answer to Question #171198 in HTML/JavaScript Web Application for hemanth

Question #171198

Check values in the Array is a String

Given an array

myArray, write a JS program to check whether each value of the array is a string or not using the array method every().Input

  • The input will be a single line containing an array myArray

Output

  • The output should be a single line containing a boolean value

Sample Input 1

[ 'frozen', 'rock', 'stained', 'basket' ]

Sample Output 1

true

Sample Input 2

[ 'recycling', 70, 'pastime', 'animal' ]

Sample Output 2

false






1
Expert's answer
2021-03-13T00:45:13-0500
let arr = [ 'recycling', 70, 'pastime', 'animal' ];
let result = arr.every(function(value) {
  return "string" === typeof value
});
console.log(result);

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS