[JavaScript] Conditionals in JavaScript
If else statementsvar yourName = "Morris";var gender = "male";var result;//Line 10 starts an if statement//Nested in this if statement is an if else statement on lines 11 - 15//This nested if else statement allows us to check another condition//We close the first if statement at ...