├── README.md └── index.js /README.md: -------------------------------------------------------------------------------- 1 | # testing -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | console.log("hello world"); 2 | 3 | // print() 4 | 5 | console("hello famous"); 6 | let name = "Alex"; 7 | let nickname = "Alexix"; 8 | 9 | let combo = name + nickname; 10 | combo.split; 11 | 12 | console.log(combo); 13 | console.log('nice'); 14 | --------------------------------------------------------------------------------