"use strict"; function foo (a, b = undefined, c = undefined) { print(a, b, c); } foo(1);