Last active
March 14, 2023 01:23
-
-
Save ktmihs/389ce0a3bfd63d557adc45280e46d99c to your computer and use it in GitHub Desktop.
console test example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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