Signup/Sign In

Answers

All questions must be answered. Here are the Answers given by this user in the Forum.

let x = 10;
let y = 1;
let z;
// your code comes here
(x > y)? z=x : z=y ;
console.log("Value of z:" + z);
4 months ago
let str1 = 'ambush';
let str2 = 101;
let str3 = false;
let str4 = str2 + ' ' + str3 + str1;
console.log(typeof str4);
4 months ago
kindly show your code.
2 years ago