##WHAT IS SCRUM?
###Scrum Software development Scrum is an iterative and incremental agile software development framework for managing software projects and product or application development.
###Related topics
##WHAT IS SCRUM?
###Scrum Software development Scrum is an iterative and incremental agile software development framework for managing software projects and product or application development.
###Related topics
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console | 
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>DOM manipulation with jQuery</title> | |
| <!-- Add a link to jQuery CDN here script here --> | |
| <script type="text/javascript" src="jquery_example.js"></script> | |
| </head> | |
| <body> | 
| class Boggle | |
| attr_reader :board | |
| def initialize(board) | |
| @board = board | |
| end | |
| def create_word(*coords) | |
| coords.map { |coord| @board[coord.first][coord.last]}.join("") | |
| end |