Merge pull request #748 from 11un/patch-7

typo "Reggie" to "Reggae"
This commit is contained in:
Ilya Kantor 2019-01-21 22:15:20 +03:00 committed by GitHub
commit 8c1782b50c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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