jsQuiz Algebra

by David McClelland

JavaScript

function matchHouses(step) {
	if(step){
	return (6 * step) - (step - 1);
	}
	return 0;
}

console.log(matchHouses(1));