Skip to content

Instantly share code, notes, and snippets.

@camilomontoyau
camilomontoyau / test.js
Created September 11, 2020 19:29 — forked from getify/test.js
fun call-stack experiment
function foo() {
baz();
}
function bar() {
baz();
}
function baz() {
console.log(`baz() was called from: ${whereWasICalledFrom()}`);