v1
3/20/2020 by YuriGor -00
Setup HTML - click to add setup HTML
disable setup JavaScript
Setup JavaScript
function isObjectTypeOf(value){
  const type = typeof value
  return value != null && (type === 'object' || type === 'function')
}

function isObjectObject(value){
  return value===Object(value);
}

const vals = [,[1, 2, 3],Object(false),new Date,new Error,{ 'a': 1 },Object(0),/x/,Object('a'), null, undefined, false, 0, NaN, '',true, 1, 'a', Symbol()];

let i;
delete caserun single casemove downdrag and drop case


ready



i = vals.length;
while(i--){
  isObjectTypeOf(vals[i]);
}
delete caserun single casemove updrag and drop case


ready



i = vals.length;
while(i--){
  isObjectObject(vals[i]);
}
Test Case - click to add another test case
Teardown JS - click to add teardown JavaScript
Output (DOM) - click to monitor output (DOM) while test is running
RUN