<p> 以下Node.js程序的输出结果是什么?( )<br/> function first (value1, value2){<br/> console.log("First Process");<br/> setTimeout(value2, 1000, value1);<br/> }<br/> function second (value1, value2){<br/> console.log("Second Process");<br/> setTimeout( value2, 1000, value1); <br/> }<br/> function third (value1, value2){<br/> console.log("Third Process");<br/> setTimeout( value2, 1000, value1); <br/> }<br/> function handleThird(data3){<br/> console.log("Complete:", data3); <br/> }<br/> function handleSecond(data2) {<br/> third(data2, handleThird); <br/> }<br/> function handleFirst(data1) {<br/> third(data1, handleSecond); <br/> }<br/> first("Process", handleThird);</p>
<p> <br/> First Process<br/> Third Process<br/> Complete: Process </p>
<p> <br/> First Process<br/> Complete: Process </p>
<p> <br/> Third Process<br/> Complete: Process</p>
<p> <br/> Second Process<br/> Complete: Process</p>
<p> <br/> Second Process<br/> Third Process<br/> Complete: Process</p>