JSFiddle - React, Tailwind, and code Playground
by minagabriel
JavaScript
$(function(){
var json = [{"skill":"html","count":"158"},{"skill":"css","count":"134"}] ;
var result = [];
$.each(json , function(i, entry){
result.push([entry.skill , parseInt(entry.count)] ) ;
});
console.log(result) ;
});