Skip to content

Instantly share code, notes, and snippets.

@ktmihs
Last active March 14, 2023 01:23
Show Gist options
  • Save ktmihs/389ce0a3bfd63d557adc45280e46d99c to your computer and use it in GitHub Desktop.
Save ktmihs/389ce0a3bfd63d557adc45280e46d99c to your computer and use it in GitHub Desktop.
console test example
const colorList = [
{id: 100, color: 'violet', icon: 'πŸ’œ'},
{id: 101, color: 'orange', icon: '🧑'},
{id: 102, color: 'yellow', icon: 'πŸ’›'},
{id: 103, color: 'green', icon: 'πŸ’š'},
{id: 104, color: 'blue', icon: 'πŸ’™'},
]
console.log(colorList);
console.table(colorList);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment