Posts by Alysson Lopes • 26 points
2 posts
-
0
votes1
answer220
viewsA: check if array element has a letter
var meucarro = ["19,98", "993", "228", "opala"]; function verIsNaN(arr) { // Substitui vírgulas por pontos (Necessário para usarmos a função Number()) let ar = arr.map(item =>…
-
1
votes1
answer340
viewsA: How to order file from another folder and run it Javascript
meu-app |--bot.js // Arquivo principal |--commands // Pasta com os comandos que serão executados no arquivo bot.js |--index.js // commands/index.js module.exports = function check() { return "Estou…