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