2
I have an array of functions, and I need to change the default value of the parameter with another value for each of them, in a loop.. Is that possible? Ex:
var externalValidations = [
function required(v, model = {}) {
console.log(model)
return v !== null || 'Campo obrigatório'
},
function requiredTwo(v, model = {}) {
console.log(model)
return v !== null || 'Campo obrigatório'
},
]
externalValidations.forEach(item => {
// --> Consigo aqui de alguma forma alterar o valor padrão de um parâmetro para cada função?!.. para ela ficar assim por exemplo:
// function requiredTwo(v, model = {valor1: 'valor1'}) {
// console.log(model)
// return v !== null || 'Campo obrigatório'
// },
console.log(item)
})
Thank you!
Cool Brother, thanks your help I reached a solution here! Thank you!
– wDrik