Newer
Older
2021-kaoka / scope.rb
@歌岡大祐 歌岡大祐 on 3 Sep 2021 89 bytes new file
var a=5;
function foo() {
  var a=3;
  console.log("a="+a);
}
foo();
console.log("a="+a);