JSFiddle - React, Tailwind, and code Playground
JavaScript
var lang = {
js: ['jQuery', 'Angular'],
php: 'hello',
css: 'world'
};
document.write(lang.php)
document.write('<br>')
lang = {
js: ['jQuery', 'Angular'],
php: ['hello'],
css: 'world'
};
document.write(lang.php[0])