Writing JS func so that it shows the multiple value for its parameter which can be used while passing the parameters when the function is invoked
in image above image, we can see that second parameter in 2nd line can take one of the three values ,'base64' , 'binary' & 'hex' function showName(name) { console.log(name) //i want my function here to show me the possible values available } showna...
May 28, 2019R