postman
Version:
The Postman will help deliver messages around your application
39 lines (29 loc) • 325 B
JavaScript
function x() {}
function x() {
;
}
function x() {
x();
return 'x';
}
function x(a) {
x();
}
function x(a, b) {
x();
}
x = function() {
x();
};
(function () {
print('x');
})();
(function (a) {
print('x');
})(1);
(function (a, b) {
print('x');
})(1, 2);
(function () {
print('x');
}).call(window);