JSFiddle - React, Tailwind, and code Playground

by Ford Heacock

JavaScript

function reverseStrings(strings) {
	let result = [];
  strings.forEach(function(string){
  	result.push(string.split("").reverse().join(""));
  });
  return result;
}



console.log(reverseStrings(["steve", "ford", "angela"]));