JSFiddle - React, Tailwind, and code Playground

by Damien M

JavaScript

function getCoords() {
    
    var x,y;
    
	return { x: 12, y: 21 }; //objet
}

var coords = getCoords();

alert(coords.x);
alert(coords.y);