• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1"use strict";
2function foo (a, b = undefined, c = undefined) {
3    print(a, b, c);
4}
5foo(1);
6