Is there a way to render something like this: ["1", "2","3"]
as1,2,3,4,5 in React?
render(){
<p>{this.numberResult()} </p>
}
this.numerResult returns ["1", "2","3"] which ends up looking like: 123 in the browser but I would like it to return 1,2,3