JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://cdn.datatables.net/1.10.4/js/jquery.dataTables.min.js"></script>
<link rel="stylesheet" href="http://ajax.aspnetcdn.com/ajax/jquery.dataTables/1.9.4/css/jquery.dataTables.css">
  <table  id="allwl">
				<th class="hidden-480">Price</th>
           	    <th class="hidden-480">Volume</th>
           	    <th class="hidden-480">Quantity</th>
           	   
       	
      </table>

JavaScript

var dataSet = 
    [
    [
        "1441.75",
        "238469"
    ],
    [
        "1614.45",
        "327663"
        
    ],
    [
        "834.15",
        "1583726"
    ],
    [
        "2261.85",
        "1062354"
    ],
    [
        "444.10",
        "99399"
        
    ]
];

var array_names = ["A", "B", "C", "D", "E"];

for(var key in dataSet) {
    if(dataSet.hasOwnProperty(key)) {
        //dataSet[key].unshift(array_names[key]);
        dataSet[key].splice(0,0,array_names[key]);
    }
} 

  $(function()
  {

      	$('#allwl').dataTable( {
			      "iDisplayLength": -1,
        "data": dataSet,
        "columns": [
            { "title": "Name" },
            { "title": "Price" },
 	{
   "title": "Quantity" ,
     mRender: function(data, type, row){
     	var quantity = row[2] ;
        return quantity;
     }
 	}
         ],
            "fnRowCallback": function (nRow, aData, iDisplayIndex, iDisplayIndexFull) {
                if(aData[0] == "A" ){
                    $('td:eq(0)', nRow).css("background-color","green");
                }
            }
    } );   

  })