JSFiddle - React, Tailwind, and code Playground

by Joe Saad

JavaScript

const getPlace = ({place='Houston', age=23, art='drawing'}) => {
	
  console.log(place, age, art)
  
  return {
  place, age, art
  }

}


let q = getPlace({art: 'New York'})