Which of the following shows the correct way to set up a variable called houses in JavaScript?

A. houses = 10;
B. var houses is 10
C. var houses == 10;
D. var houses = 10;

D. var houses = 10;