HTML Editor
<!DOCTYPE html> <html lang="en-US"> <body> <script> var str1 = "One"; var str2 = new String("Two"); document.write("str1 : " +typeof str1); document.write("<br>str2 : " +typeof str2); </script> </body> </html>
OUTPUT
×

Save as Private