Files

2 lines
88 B
JavaScript

function first() { var a = "first"; second(); function second() { var a = "second"; } }