JSON To HTML Table And 2D arry
npm install miracle.jssh
npm install miracle.js
`
$3
1. getTableFromJson
by passing a json object to the function and get a HTML table back
example:
`sh
document.getElementById("ID").innerHTML = getTableFromJson(JOSNObject);
`
2. MakeListFromArray
by passing a array object to the function and get a HTML List back
example:
`sh
document.getElementById("ID").innerHTML = MakeListFromArray(array);
`
3. sortList
Sort any list by passing list id to the function
example:
`sh
sortList(ListID);
`
4. sortTable
Sort any Html Table by passing Table id to the function
example:
`sh
sortTable(TableID);
``