What does the "=>" operator do in Javascript? This is probably a very basic question, but it is ungoogle-able. Does this operator have a name (to help me find it in references)? It seems to be some kind of remapping function. An example of where I've found it:
let maxLen = Math.max.apply(null, arrays.map(v => v.length)), out = [];
for finding the longest array held in arrays.