Я хочу добавить путь к изображению в массиве, а также добавить кнопку. Как я могу это сделать?
function prac_createTable(){
var table = document.createElement('table');
table.setAttribute('id', 'empTable');
var arrValue = new Array()
arrValue.push(['The alchemist', '**path of the image from local**', '**button**'])
}