Woocommerce remove additional information

We often encounter a situation where we need to woocommerce remove additional information section from the checkout pages of woocommerce. This can be achieved by using filter provided by woocommerce. This can also be achieved by overriding woccomerce template but the benefit of using filter is that you can use it in your plugins and this will be effective even if you switch themes.

Woocommerce remove additional information
add_filter('woocommerce_enable_order_notes_field', '__return_false');