Skip to content

Instantly share code, notes, and snippets.

@matt0224
Last active May 3, 2017 14:20
Show Gist options
  • Save matt0224/562da0f0863c0c010570c67d6050b489 to your computer and use it in GitHub Desktop.
Save matt0224/562da0f0863c0c010570c67d6050b489 to your computer and use it in GitHub Desktop.
<!DOCTYPE html><html><head>  <meta charset="UTF-8">  <title>JavaScript Exercises</title> <script>
var Home = { Box: function () {  this.color = 'black';  this.paint = function (value, cb) {     this.color = value;   cb();  } }}
function Button1_onclick() { var objBox = new Home.Box(); objBox.paint("RoyalBlue", function () {  txt2.value = objBox.color; });}
</script>
</html></html></html></html></html></html></html></html></html></html></html></html></html></html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment