js-mentorship-razvan / javascript

Javascript study notes
GNU General Public License v3.0
22 stars 2 forks source link

Solve 'Hello World - Without Strings' #313

Closed odv closed 5 years ago

odv commented 5 years ago

https://www.codewars.com/kata/hello-world-without-strings/train/javascript

RazvanBugoi commented 5 years ago
const helloWorld = () => {
  let output = [72, 101, 108, 108, 111, 44, 160, 87, 111, 114, 108, 100, 33];
  return String.fromCharCode(...output);  
};