var json = { 'joined': 1 };
var template = json.joined +' '+ ((json.joined === 1) ? 'person': 'people') +' joined so far.';
I've changed the way you insert the number, because it's easier for Javascript to understand and actually takes less time to parse.
Basically, this sequence of syntax (condition) ? value: value is another way of an if-statement and returns a value more or less.
var true_or_false = (1 === 1) ? 'this is true!': 'this is false!';
Here I check if 1 equals 1. If so, add 'this is true!' to the string. If not, add 'this is false!' to the string. When you're surrounding an if-statement like that between two strings, I highly recommend to put a set of brackets around it, again!
var true_or_false = 'this is '+ ((1 === 1) ? 'true': 'false') +'!';
Alternatively you can use the old-fashioned if statement.