programming-examples/js/Functions/Write a JavaScript function to get the function name..js

5 lines
81 B
JavaScript
Raw Normal View History

2019-11-15 12:59:38 +01:00
function abc() {
console.log( arguments.callee.name );
}
abc();