Can you use Arrow Function in this example? If so, what would it look like? What is the best way to do value search?
var msg = ["Orange", "Melancia", "Abobora"];
var fruta = "Melancia"
buscar(fruta);
function buscar(str){
if(msg.indexOf(str) > -1){
console.log(str);
}else{
console.log("Fruta não encontrada");
}
}