We're a place where coders share, stay up-to-date and grow their careers.
1.How to reverse a String Using Reduce Method.
function reverseString(str) { const arr = str.split(''); return arr.reduce((acc, val) => val + acc,""); }
2.What is the difference between slice and splice?
3.How to convert an object into a string?
1.How to reverse a String Using Reduce Method.
2.What is the difference between slice and splice?
3.How to convert an object into a string?