crop_rotate
Run
<!DOCTYPE html> <html> <body> <h2>JavaScript Typeof Function</h2> <p id="test"></p> <script> var courses = ["HTML", "CSS", "JS"]; courses [0] = "PHP"; document.write(typeof(courses)); </script> </body> </html>
JavaScript Typeof Function