Skip to content

Instantly share code, notes, and snippets.

@Qiamast
Created February 5, 2023 08:07
Show Gist options
  • Save Qiamast/56f6e3618b0b2f5fc4f643ad26671b56 to your computer and use it in GitHub Desktop.
Save Qiamast/56f6e3618b0b2f5fc4f643ad26671b56 to your computer and use it in GitHub Desktop.
Handy Arrow Function JavaScript Project
const log = log => console.log(log)
const war = warn => console.warn(warn)
const inf = info => console.info(info)
const err = error => console.error(error)
const tab = table => console.table(table)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment