I was testing some javascript functions in the Chrome console and found that I can write functions like C# expressions.
var testFunction = (v1, v2) => v1 + v2;
var result = testFunction(2, 3);
// result is 5
I have search about it on google, but I didn't find anything about this specific syntax.
Is this something new or just a resource from the Chrome console? Does browsers commonly support this?