9 Eylül 2021 Perşembe

Javascript Fonksiyonlarda Döngü

 <html>

<head>

<title> başlık </title>

</head>

<script type="text/javascript">

function dongu()

{

document.write("<h2>fonksiyon içinde döngü kullanıyoruz</h2><p/>");

for(i=1;i<=10;i++)

{

document.write(i+"<br/>");

}

document.write("<p/>döngü bitti..");

}

</script>

</head>

<body>

<input type="button" value="TIKLA" onclick="dongu()">

</body>

</html>


Hiç yorum yok:

Yorum Gönder