Is it possible to output the result from the 'three' function to console.log in the 'one' function?
one = async (number) => {
console.log(`we received ${number}`)
await two(number)
console.log('the number three should be displayed here')
}
two = async (number) => {
number++
console.log(`I obtained ${number}`)
await three(number)
}
three = (number) => {
number++
console.log(`final step is ${number}`)
}
one(1)