Quotes help make search much faster. Example: "Practice Makes Perfect"

Thursday, December 15, 2016

Codefights arrayReplace(inputArray, elemToReplace, substitutionElem)


//sample solution
function arrayReplace(inputArray, elemToReplace, substitutionElem) {
    for(i=0;i<inputArray.length;i++){
        var index = inputArray.indexOf(elemToReplace);
        if (index !== -1) {
            inputArray[index] = substitutionElem;
        }
    }
    return inputArray;
}

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts