function home() {
const list = ['john', 'adele', 'hary']; list.push('tiger');
return list;
}
home() //["john", "adele", "hary", "tiger"]
push method is available and also, list[0] = "abc" is available
In JS, const keyword is different to Java or CPP??