News

const parrot = (value) => { return value; }; parrot (1); // returns 1 parrot ('Anything'); // returns 'Anything' parrot (parrot); // returns the function parrot This is known as the identity ...