JSFiddle - React, Tailwind, and code Playground

by Slico

JavaScript

const size = "m"
const color = "pink"
const brand = "nike"

/**
* What is the output of the below exercises: 
*/

if(size === "m"){
	console.log("Is M")
}else{
	console.log("Not M")
}

s