You need to create two functions to substitute toString() and parseInt(); A function called intToString() that converts integers into strings and a function called stringToInt() that converts strings into integers.
intToString(4) ➞ "4"
stringToInt("4") ➞ 4
intToString(29348) ➞ "29348"
You will get bonus points if you manage to solve this without using toString, parseInt or parseFloat.