Реализуйте функцию так, чтобы она перевернуло переданную в него строку.
===
'world' => 'dlrow'
===
#codewars #jstasks #javascript #js #javascripttasks
Реализуйте функцию так, чтобы она перевернуло переданную в него строку.
===
'world' => 'dlrow'
===
#codewars #jstasks #javascript #js #javascripttasks
grhgrmgrhrm
function solution(str) {
return str.split(''.reverse().join('';
}
#codewars #jstasks #javascript #js #javascripttasks
Delete Comment
Are you sure that you want to delete this comment ?
grhgrmgrhrm
const solution = str => str.split( '' ).reverse().join( '' );
#codewars #jstasks #javascript #js #javascripttasks
Delete Comment
Are you sure that you want to delete this comment ?
grhgrmgrhrm
function solution(str){
return str = str.split(''.reverse().join('';
}
#codewars #jstasks #javascript #js #javascripttasks
Delete Comment
Are you sure that you want to delete this comment ?