Function Expression Javascript

const square = function (num) {
	return num * num;
}

square(5);