Make space between two JS function inputs
I am having issues trying to find the answer to this question on a search engine/ translating this to English. (super new at all this) but if anyone could explain how to do this its greatly appreciated. Am I possibly missing some possible HTML elements? (currently brushing up at this moment) After that I plan on stopping by the www.w3schools.com/ because I didn't realize I would fall in love with coding.... this questions just happens to bother me more so because I don't know how to ask it function person (name, age) { this.name = name; this.age = age; } var TeaSama = new person("TeaSama", 25); var Britta = new person("Britta", 21); document.write(TeaSama.age); //how would I put a space between the ages? I feel like this is super simple. document.write(Britta.age);