Kevin Powell - CommunityKP-C
Kevin Powell - Communityβ€’4y agoβ€’
15 replies
chrono1913

readLine() what does this do in this code

x = (score) => {
score = parseInt(readLine(), 10)
return score >= 88 ? "excellent" : (score <= 87 && score >=40) ? "good": "fail";    
}
console.log(x())
Was this page helpful?