JSFiddle - React, Tailwind, and code Playground

by Alexandr Loginov

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])