mirror of
https://github.com/liriliri/eruda.git
synced 2026-04-13 10:48:35 +08:00
9 lines
92 B
JavaScript
9 lines
92 B
JavaScript
setTimeout(function ()
|
|
{
|
|
test();
|
|
}, 5000);
|
|
|
|
function test()
|
|
{
|
|
console.log('haha');
|
|
} |