Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Tomas Langkaas

Tomas Langkaas

Tomas Langkaas has asked 3 questions and find answers to 19 problems.

Stats

400
EtPoint
107
Vote count
3
questions
19
answers

About

console.log(function(a, b, c, d) {
  return [
    a.slice(1,  3) + a.slice(0, 5) +
    d.charAt(  11) + c.slice(  -2) +
    d.slice(5,  7) , c.slice(0, 2) ,
    b.slice(1, -1) + a.charAt(  1)
  ].join(' ')
}('createElement', '<code>', 'JSON', 'toLocaleString'));