document.forms ব্যবহার করুন৷ একটি নথিতে ট্যাগের সংখ্যা পেতে জাভাস্ক্রিপ্টে সম্পত্তি। উদাহরণ আপনি document.forms বাস্তবায়ন করতে নিম্নলিখিত কোডটি চালানোর চেষ্টা করতে পারেন জাভাস্ক্রিপ্টে সম্পত্তি। <!DOCTYPE html> <html> <head> <title>JavaScript Example</title> </head> <body> <h1>Employee Information</h1> <form> Name: <input type="text" name="name" value="Amit"><br> Subject: <input type="text" name="sub" value="Java"> </form> <h1>Department Information</h1> <form> DepartmentID: <input type="text" name="dptid" value="D001"><br> Dept Name: <input type="text" name="dname" value="Marketing"> </form> <script> var num = document.forms.length; document.write("<br>How many forms? "+num); </script> </body> </html>