js check the type stored in the name variable in js

Solutions on MaxInterview for js check the type stored in the name variable in js by the best coders in the world

showing results for - "js check the type stored in the name variable in js"
Laney
08 Aug 2019
1const name = "Boris";
2
3typeof(name);
4// => 'string'
5
similar questions