MCPcopy
hub / github.com/mouredev/hello-javascript / extern

Function extern

Basic/16-functions.js:78–84  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

76// Funciones anidadas
77
78function extern() {
79 console.log("Función externa")
80 function intern() {
81 console.log("Función interna")
82 }
83 intern()
84}
85
86extern()
87// intern() Error: fuera del scope

Callers 1

16-functions.jsFile · 0.85

Calls 1

internFunction · 0.85

Tested by

no test coverage detected