The ancient gate is protected by a security code system.
You must write a JavaScript IF statement to check the correct code.
🎯 Objective: Unlock the door using key 4321
💡 Hint: Use an IF statement.
Structure example:
let key = ______
if( ______ == 4321 ){
openDoor()
}