文字列値を JavaScript Date 形式に変換しようとしていますが、datejs などの追加のライブラリを使用せずに簡単な方法を見つけられないようです
var dateString = "20131120";
var date = new Date(dateString);
console.log(date);
// I need to add an additional day to the original string
var newDate = date.getFullYear() + '-' + (date.getMonth()+1) + '-' + (date.getDate()+1);
console.log(newDate);
どんなヒントでも大歓迎です。