How to create a element of checkbox code example
Example: How to create a element of checkbox
var x = document.createElement("input");
x.setAttribute("type", "checkbox");
var x = document.createElement("input");
x.setAttribute("type", "checkbox");