JSFiddle - React, Tailwind, and code Playground

by Fabian Allel

JavaScript

//Matematicas I(x)=x
//Programación
function I(x){
	return x;
}
//Matemáticas S(x, y) = x + y
//Programación
function S(x, y){
	return x + y;
}