GAS 月末取得方法 setDate(0)で月末が取得できない

google
月末を取得する(誤)
var date = new Date();
date.setMonth(date.getMonth(), 0);
ネット上で検索すると上記で先月末の値が取得できると見つかる。
が、実際試してみるとできない。
月末を取得する(正)
var date = new Date();
date - new Date(date.getFullYear(), date.getMonth(), 0);
上記で無事に先月末の日付が取得可能です。