DataScience_Examples

All about DataSince, DataEngineering and ComputerScience

View the Project on GitHub datainsightat/DataScience_Examples

var echo = function (text, count) {
    for (i=1; i<=count; i++) {
        console.log(text);
    }
}

echo('Echo',10);
echo('Tater Tats', 3);