JSFiddle - React, Tailwind, and code Playground

HTML

<button>button</button>

JavaScript

$('button').click(function() {
    var v1 = {  };
    var v2 = { x: v1 };
    v1.x = v2;

    $.ajax({
        url: 'someurl/',
        priv2: { somevar: v1 },
        cache: false
    });
});