jquery cookie

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.min.js"></script>

JavaScript

jQuery(document).ready(function() {

    var savedObjs = [{title: 11111, descr: "test"}, 
                     {title: 2222, descr: "lololol"}];
    
    $.cookie.json = true;
    $.cookie("previousStories", savedObjs);
    $.cookie("previousStories1", JSON.stringify(savedObjs));
    
    console.log("json: " + JSON.stringify(savedObjs));
    console.log("json x2: " + JSON.stringify(JSON.stringify(savedObjs)));
    console.log($.cookie("previo"));
    
});