Домашнее задание по JAVASCRIPT, я не могу его запустить, может кто-нибудь помочь мне исправить код?
<html> <head> <script type="text/javascript"> // Program name: AccountClass.html // Purpose: Use a constructer function // to create an object // Author: Arbr Krasniqi // Date last modified: April-25th-2018 // Constructor function for the Account Class Function account(type, num, 1name, fName, bal) { this.acctType = type; this.acctNumber = num; this.lastName = 1Name; this.firstName = fName; this.acctBal = bal; } // end Account function </script> </head> <body> <script type="text/javascript"> // Variables and Constants var BR = "<br/>"; // HTML line break tag // State program purpose document.write("Account program." + BR); document.write("This program creates an Account." + BR); // Create an Account object var mySavingsAcct = new Account("S", 1376433, "Dunes", “Sandi”, 80.00); //Thank the user and end the program document.write("Thank you!" + BR); </script> </body> </html>
Что я уже пробовал:
Открытие файла в формате html из texteditor на mac.