// js
console.log('hello');
// php
echo 'hello';
// js
var x = 1;
// php
$x = 1;
// js
const X = 1;
// php
define('X', 1);
// js
var one, two, three = [];
// php
$one = $two = $three = [];
// js
var x = [];
// php
$x = [];
$x = array()
// js
var x = {
name: 'Weltall',
age: 50
};
// php
$x = [
'name' => 'Weltall',
'age' => 50
];
// js
x.forEach(function(y) { });
// php
foreach(x as y) {}