stack overflow app code example
Example 1: stackoverflow
Welcome to heaven!!
Example 2: stackoverflow
who uses grepper?
Example 3: stackoverflow
Ctrl + c, Ctrl + v
Example 4: stack overflow
bro i got banned from stackoverflow
Example 5: stack overflow
Time to copy and paste!
Example 6: stackoverflow
function myCatch (callback) {
const e = new Error('oh no')
callback<e...>
}
function next (error) {
console.log('got error:', error)
}
myCatch(next)
// Result is: you get `got error: Error: oh no`