// Open your console and type firstname()
// what happens?
// now type myName() and see what happens
function myName() {
function firstName() {
console.log("Christina")
}
return firstName()
}
myName()
View Compiled
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.