In computer programming, boilerplate code are the sections of the code that have to be included in many places without or with, little alterations. A considerable amount of code needs to be written by the programmer for minor functionality; this part of the code is called boilerplate.
In object-oriented programming, each class has defined methods for getting and setting their variables. Usually, these methods are regarded as boilerplate because these functions can be called for every object of the defined-class.
Note: The above code is written to provide encapsulation. If the member variables are declared public, the mutator methods would not be needed.
The most commonly used html boilerplate is shown below: