mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-10 19:01:13 -04:00
5 lines
48 B
JavaScript
5 lines
48 B
JavaScript
x = 0;
|
|
setTimeout(function () {
|
|
x = 1;
|
|
}, 0);
|