Sobes.tech
Junior — Senior

What output will appear in the console (example 83)

livecode

Task condition

Determine what text will be output to the console when executing the following code:

 const first = () => console.log('Ojmm') const second = () => console.log('Hoa') const third = () => console.log('Tpm')

first() setTimeout(second, 0) third()