Skip to main content
Commonmark migration
Source Link

#JavaScript (ES6), 60 bytes

JavaScript (ES6), 60 bytes

x=>[...`qwertyuiop asdfghjkl zxcvbnm`].join` `.split(x)[1] 

Uses the same technique as most other answers. Suggestions welcome!

#JavaScript (ES6), 60 bytes

x=>[...`qwertyuiop asdfghjkl zxcvbnm`].join` `.split(x)[1] 

Uses the same technique as most other answers. Suggestions welcome!

JavaScript (ES6), 60 bytes

x=>[...`qwertyuiop asdfghjkl zxcvbnm`].join` `.split(x)[1] 

Uses the same technique as most other answers. Suggestions welcome!

Source Link
ETHproductions
  • 50.3k
  • 6
  • 96
  • 241

#JavaScript (ES6), 60 bytes

x=>[...`qwertyuiop asdfghjkl zxcvbnm`].join` `.split(x)[1] 

Uses the same technique as most other answers. Suggestions welcome!