/*
• Alien Colors #1: Imagine an alien was just shot down in a game. Create a variable called alien_color and assign it a value of 'green', 'yellow', or 'red'.
o Write an if statement to test whether the alien’s color is green. If it is, print a message that the player just earned 5 points.
o Write one version of this program that passes the if test and another that fails. (The version that fails will have no output.)
*/
let alien_color: string = 'green';
if (alien_color === 'green') {
console.log("Player just earned 5 points");
}
To embed this project on your website, copy the following code and paste it into your website's HTML: