Skip to content

Instantly share code, notes, and snippets.

@tikarammardi
Last active November 23, 2020 17:09
Show Gist options
  • Save tikarammardi/024e43d90e09b4123626bc10dac35c8b to your computer and use it in GitHub Desktop.
Save tikarammardi/024e43d90e09b4123626bc10dac35c8b to your computer and use it in GitHub Desktop.
sub-type error-eg
function setWindowSize(size){
let startWindow = 10;
let endWindow = 30;
if(size > endWindow){
throw new RangeError(` Size ${size} is out of range`);
}
//do some more coding
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment