Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 674 Bytes

File metadata and controls

21 lines (15 loc) · 674 Bytes
difficulty OAs projects
newbie strings cipher, card validation

middleThree

https://the-winter.github.io/codingjs/exercise.html?name=middleThree&title=String-1

Dada uma string de comprimento ímpar, retorne a string de comprimento 3 do seu centro, de modo que "Candy" retorne "and". O comprimento da string será de pelo menos 3.

Exemplo

    middleThree('Candy')  "and"
    middleThree('and')  "and"
    middleThree('solving')  "lvi"

↩️ Voltar