ASDV-WebDev/Semester 1/Chapter ZIPs/JavaScript/ch7/ex_7_15.js
2023-08-16 17:31:33 -05:00

7 lines
105 B
JavaScript
Executable File

function checkWord(x,y)
{
var x; var y; var spell = true;
if (x != y)
spell = false;
return spell;
}