function multiplication(x,y) { return x * y; } console.log(multiplication(4,5)); /* Lecture # 48 Topic : Pure Function in JavaScript Pure Function: Same input → same output Does not change external data */