ProblemHackerRank detailed problem description can be found here. We need to create a function insertNodeAtPosition(head, data, position) {}. This function should: Create a new node using provided dataInsert that newly created node at the provided position inside a Singly Linked ListLastly, return the head nodeInputs & Outputs/* param {Node} head