Preview:
const addMenu = () => {

	// Меню бургер
	const iconMenu = document.querySelector('.header-menu__icon');
	const menuBlock = document.querySelector('.header-menu__menu');
	iconMenu.addEventListener('click', function () {
		document.body.classList.toggle('lock');
		iconMenu.classList.toggle('active');
		menuBlock.classList.toggle('active');
	})

	// Скрол из бургера
	const menuLinkAll = document.querySelectorAll('.header-menu__link');
	for (let current of menuLinkAll) {
		current.addEventListener('click', function () {
			if (iconMenu.classList.contains('active')) {
				document.body.classList.remove('lock');
				iconMenu.classList.remove('active');
				menuBlock.classList.remove('active');
			}
		})
	}
}
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter