code_same-line-functions.js 88 B

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