MicroMaster123 / PasswordGuesser

0 stars 1 forks source link

Grading #1

Open arvvvs opened 7 years ago

arvvvs commented 7 years ago

Grading

Missing JavaScript! 4/10

arvvvs commented 7 years ago

Try this for javascript ` // JavaScript File $(document).ready(function() {

// All code goes here

var password = "secretpassword";

$("button").click(function() {

    if (password === $("#password-input").val()) {

        alert("Congratulation!");

    }

});

}); `