JSFiddle - React, Tailwind, and code Playground
by eget teteete
JavaScript
function User(name, age, sex){
this.name = name;
this.age = age;
this.sex = sex;
console.log(sex, age+3, name + 1);
console.log(this.name, this.age);
}
User('Sas', 65);