Skip to content

Instantly share code, notes, and snippets.

@KimSarabia
Last active October 17, 2015 22:20
Show Gist options
  • Save KimSarabia/bf2cb525c85716975899 to your computer and use it in GitHub Desktop.
Save KimSarabia/bf2cb525c85716975899 to your computer and use it in GitHub Desktop.
Eloquent Javascript Ch1:Q1
var hashtag = "#";
while (hashtag.length <= 7) {
console.log(hashtag);
hashtag += "#";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment