Pure functions are functions that:
Example:
//x and y are not being modified
//no side effects since always returns sum of x and y
function add(x, y){
return x + y;
}
On the other hand, Impure functions are functions that:
Example:
//items have been modified inside the function
function appendTest(items){
for(let i = 0; i < items.length; i++>){
items[i] = items[i] + "Test";
}
}