Skip to content

Instantly share code, notes, and snippets.

@johnnolan
Created August 10, 2018 08:30
Show Gist options
  • Save johnnolan/47cb77f479ea5b128ab3be54c44430b4 to your computer and use it in GitHub Desktop.
Save johnnolan/47cb77f479ea5b128ab3be54c44430b4 to your computer and use it in GitHub Desktop.
function coolStory() {
var coolStoryBro = [
{ 'line': 'Now this is a story all about how' },
{ 'line': 'My life got flipped-turned upside down' },
{ 'line': 'And Id like to take a minute' },
{ 'line': 'Just sit right there' },
{ 'line': 'Ill tell you how I became the prince of a town called Bel-Air' }
];
console.table(coolStoryBro);
return coolStoryBro;
}
coolStory();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment