Skip to content

Instantly share code, notes, and snippets.

@EvanGertis
Created February 1, 2019 14:32
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 EvanGertis/8f7143a6bb4f44b85a9ebd2652f4efc5 to your computer and use it in GitHub Desktop.
Save EvanGertis/8f7143a6bb4f44b85a9ebd2652f4efc5 to your computer and use it in GitHub Desktop.
javascript square function
function square(UI_body, width, height, color){
let square = document.createElement('div');
square.style.width = width;
square.style.height = height;
square.style.margin = "2px 2px 2px 2px";
square.style.backgroundColor = color;
UI_body.append(square);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment