This proposal introduces named arguments.
Works well with es-type-hinting.
Long form:
function move(xPos: x Number, yPos: y Number) {
console.log("x:", x, "y:", y);
}
move(xPos: 5, yPos: 10);
Shorthand form:
function move(x: Number, y: Number) {
console.log("x:", x, "y:", y);
}
move(x: 5, y: 10);
TODO