Week 1Quiz 3aAssigment: Identify function Write a function named id that returns its argument, such that for all x, id(x) === x. Solutionconst id = x => x;Show solution Your solution will be tested against: const x_ = Math.random(); id(x_) === x_;Quiz 2Quiz 3b