Ruby Developer Question:

What is the difference extend and include?

Ruby Developer Interview Question
Ruby Developer Interview Question

Answer:

The “include” makes the module’s methods available to the instance of a class, while “extend” makes these methods available to the class itself.


Previous QuestionNext Question
Tell me the role of modules and mixins in Ruby?What is the syntax for Ruby collect Iterator?