Files
2018-02-02 04:16:08 -05:00

2 lines
88 B
JavaScript

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