wdsacademy
Pages
Home
Learn Web Development & Training
Youtube Video
Thursday, September 5, 2024
Factorial of any number
<script>
var
num
=
12
;
var
z
=
1
;
var
i
;
for
(
i
=
1
;
i
<=
num
;
i
++){
z
=
z
*
i
;
}
document
.
write
(
z
);
</script>
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
How to Add AI to Your Website
index.php file <form method = "POST" action = "chat.php" > <input type = "text" name = "...
Password Remember using php
Video Link - Go to video Full code - <?php if ( $_SERVER [ 'REQUEST_METHOD' ]== "POST" ) { $email = $_POS...
CSS Triangles
<!doctype html > <html lang = "en" > <head> <meta charset = "utf-8" /> <meta name ...
Custom Popup using HTML + CSS + Javascript
Video Link - Go to video Full Code - <style> .popup-overlay { display : none ; position : fixed ; top ...
No comments:
Post a Comment