It seems that I remember that there is a special name for the function whose output is always identical to its input, for example:
var whatsMyName = function (a) { return a; };
Does anyone know if such a function is called, which in practice is pretty pointless?
source share