JSFiddle - React, Tailwind, and code Playground

HTML

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

JavaScript

var arr = [
		["Name1", "Name2"],
		["Size1", "Size2"],
		["Type1", "Type2"],
		];
 
 
		var setCookie = $.cookie('mycookie', arr);
		console.log(setCookie);
 
 
		var json_str = JSON.stringify(arr);
		$.cookie('mycookie', json_str);
                console.log($.cookie('mycookie', json_str));
 
		var json_str = $.cookie('mycookie');
		console.log(json_str);
 
		var arr = JSON.parse(json_str); // ligne 170
		console.log(arr);