الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <body> <h1>JavaScript SetTimeout</h1> <p>The setTimeout() function will be executed once after 3 seconds.</p> <script> // سيتم تنفيذه بعد مرور 3 ثواني alert() الأمر setTimeout(() => { alert('Welcome to Harmash.com'); }, 3000); </script> </body> </html>