typescript · TypeScript Basics
What will be output of the following expression?
let a:string=47;
console.log( " Value of a= " +a);Answers
- Value of a=47
- Value of a=0
- Value of a=
- None of the above
typescript · TypeScript Basics
let a:string=47;
console.log( " Value of a= " +a);