Answers for "get object type"

C#
0

get type of object javascript

var obj = new String();
var str = "this is string";
            
typeof obj; // returns object
typeof str; // returns string
Posted by: Guest on May-08-2021

C# Answers by Framework

Browse Popular Code Answers by Language