Fonction anonyme de fléchette

// single line
var sum = (a, b) => a + b;
// multi-line
var sum = (a, b) {
	return a + b;
};
just-saved-you-a-stackoverflow-visit