//Sample solution to main.js
var someString = "I'm coding like a champ";
document.write( someString );
document.write( " The length of this string is " );
document.write( someString.length );
//for space
document.write( " " );
document.write( someString.length > 10 );
Back to the list of sample solutions for Animate Your Name
var someString = "I'm coding like a champ";
document.write( someString );
document.write( " The length of this string is " );
document.write( someString.length );
//for space
document.write( " " );
document.write( someString.length > 10 );
Back to the list of sample solutions for Animate Your Name
No comments:
Post a Comment