programming-examples/js/Functions/Write a JavaScript function to get the function name..js
2019-11-15 12:59:38 +01:00

5 lines
81 B
JavaScript

function abc() {
console.log( arguments.callee.name );
}
abc();