JSFiddle - React, Tailwind, and code Playground

JavaScript

function func(x){
    x = typeof x !== 'undefined' ? x : 10;
    alert(x);
}
func();
func(20);