For consistency single-quotes (') are preferred to double-quotes ("). This is helpful when creating strings that include HTML.
var firstParameter = "something";
var firstParameter = 'something';
JSX code and strings that contain single quotes are ignored.