Skip to content

Instantly share code, notes, and snippets.

@EECOLOR
Last active April 1, 2022 21:41
Show Gist options
  • Save EECOLOR/0460a05e72105b840d4573344305a5ae to your computer and use it in GitHub Desktop.
Save EECOLOR/0460a05e72105b840d4573344305a5ae to your computer and use it in GitHub Desktop.
snippet_const_function
const moreDetail = () => {
...
}
const detail1 = () => {
...
return moreDetail()
}
const detail2 = (input) => {
...
}
const overview = () => {
const result1 = detail1()
return detail2(result1)
}
// vs
function overview() {
const result1 = detail1()
return detail2(result1)
}
function detail1() {
...
return moreDetail()
}
function detail2() {
...
}
function moreDetail() {
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment