Click here to Skip to main content
15,860,972 members

DataTable in JavaScript

Revision 1
I want to create table of data in JavaScript equivalent to this code in c#:

C#
// Create DataTable to store the mobiles in it
        DataTable dTable = new DataTable("mobiles");
        DataTable dTable_Int = new DataTable("mobilesInt");
        DataTable dTable_STC = new DataTable("mobilesSTC");
        DataTable dTable_MobilyZain = new DataTable("mobilesMobilyZain");
        DataColumn fMobileColumn = new DataColumn();
        DataColumn fMobileColumnSTC = new DataColumn();
        DataColumn fMobileColumnMobilyZain = new DataColumn();
        DataColumn fMobileColumnInt = new DataColumn();


other meaning what is the code equivalent to it??
Posted 17-Nov-12 21:41pm by engmebeed.
Tags: ,