Skip to content

Instantly share code, notes, and snippets.

@nicobytes
Last active February 11, 2016 00:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nicobytes/e42fae5906105dab4cf2 to your computer and use it in GitHub Desktop.
Save nicobytes/e42fae5906105dab4cf2 to your computer and use it in GitHub Desktop.
multipleTest1
function multipleTest1() {
// Test
var result = calculator.multiply( 3, 3 );
//Assert Result is expected
if( result === 9 ){
console.log( "Test Passed" );
}else{
console.log( "Test Failed" );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment