typo "Reggie" to "Reggae"

This commit is contained in:
11un 2019-01-21 11:01:50 -08:00
parent 24ead0161a
commit 009f87a4d5

View file

@ -5,6 +5,6 @@ let styles = ["Jazz", "Blues"];
styles.push("Rock-n-Roll"); styles.push("Rock-n-Roll");
styles[Math.floor((styles.length - 1) / 2)] = "Classics"; styles[Math.floor((styles.length - 1) / 2)] = "Classics";
alert( styles.shift() ); alert( styles.shift() );
styles.unshift("Rap", "Reggie"); styles.unshift("Rap", "Reggae");
``` ```