Sublime Text
<!DOCTYPE html> <html> <body> <p id="demo1"></p> <p id="demo2"></p> <script> var mobile = ["HTC", "Nokia", "SamSung", "LG", "Apple"]; document.getElementById("demo1").innerHTML = mobile; mobile.reverse(); document.getElementById("demo2").innerHTML = mobile; </script> </body> </html>
<!DOCTYPE html> <html> <body> <p id="demo1"></p> <p id="demo2"></p> <script> var mobile = ["HTC", "Nokia", "SamSung", "LG", "Apple"]; document.getElementById("demo1").innerHTML = mobile; mobile.reverse(); document.getElementById("demo2").innerHTML = mobile; </script> </body> </html>