How to Hide the "jQuery Migrate" Admin Menu

function plt_hide_enable_jquery_migrate_helper_menus() {
	//Hide the "Tools → jQuery Migrate" menu.
	remove_submenu_page('tools.php', 'jqmh');
}

add_action('admin_menu', 'plt_hide_enable_jquery_migrate_helper_menus', 11);

Where do I put this code?