Answer to Question #326644 in HTML/JavaScript Web Application for Bylapati suresh kumar

Question #326644

"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++];

}


function main() {

 let person = JSON.parse(readLine().replace(/'/g, '"'));


 /* Please do not modify anything above this line */


 /* Write your code here and log the output */

}



input1

{ 'name':'Pranay', 'address':{'city':'Mumbai','state':'maharastra'}, 'nicknames':['nani','chanti']}

output2


pranay is from mumbai,maharastra

pranay has 2 nicknames



length is not defined but output is come


1
Expert's answer
2022-04-10T17:45:24-0400
"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++];
}


function main() {
  /*input1
 {'name':'Pranay', 'address':{'city':'Mumbai','state':'maharastra'}, 'nicknames':['nani','chanti']}*/
 let person = JSON.parse(readLine().replace(/'/g, '"'));
 /* Please do not modify anything above this line */
 console.log(person.name+" is from "+ person.address.city+"," +person.address.state);
 console.log(person.name + " has " + person.nicknames.length +" nicknames");
}

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