Skip to content

Instantly share code, notes, and snippets.

@abdallahmalima
Created November 12, 2022 02:17
Show Gist options
  • Save abdallahmalima/26ef40686aec21d0953095053b669ee8 to your computer and use it in GitHub Desktop.
Save abdallahmalima/26ef40686aec21d0953095053b669ee8 to your computer and use it in GitHub Desktop.
check DRY principle
const greet = (message, name) => {
console.log(`${message}, ${name}!`)
}
greet('Hello', 'John');
greet('Hola', 'Antonio');
greet('Ciao', 'Luigi')
@abdallahmalima
Copy link
Author

  • No code is repeated except the function call which does not violate DRY principle

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment