How to create HTML elements using JavaScript Dynamically:
=========================================================
1) Create an HTML Element using createElement():
===============================================
Syntax:
document.createElement("HTML-ELement-Name");
2) Add created HTML Element to the web document:
================================================
appendChild()
=============
==> when we want to add the created HTML element into another HTML element, we can use "appendChile()".
ex:
========================================================
2) How to add array of elements into web document:
==================================================
Document
==========================================================
How to add dropdown dynamically to webpage:
===========================================
Document