Answer to Question #177720 in HTML/JavaScript Web Application for adhi chinna

Question #177720

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

  • input will be a single line containing an array myArray

Output

  • output should be a single line containing a boolean value

Input 1

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

Output 1

true

Input 2

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

Output 2

false


"use strict";

process.stdin.resume();

process.stdin.setEncoding("utf-8");

let inputString = "";

let currentLine = 0;

process.stdin.on("data", (inputStdin) => {

 inputString += inputStdin;

});

process.stdin.on("end", (_) => {

 inputString = inputString.trim().split("\n").map((str) => str.trim());

 main();

});

function readLine() {

 return inputString[currentLine++];

}

/*not modify anything above this line */

function main() {

 const myArray = JSON.parse(readLine().replace(/'/g, '"'));

 /* Write your code here */

}



1
Expert's answer
2021-04-04T14:39:18-0400
Dear adhi chinna, your question requires a lot of work, which neither of our experts is ready to perform for free. We advise you to convert it to a fully qualified order and we will try to help you. Please click the link below to proceed: Submit order

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
APPROVED BY CLIENTS