Best practice for initialing properties in the constructor in JS

I see two formats for initializing properties in the class constructor like objects and arrays

    this._obj = {};
    this._str = '';
    this._arr = [];
or 
    this._obj = null;
    this._str = null;
    this._arr = null;

What is the best way to declare the initial property values?