When manipulating the "display" property of a bootstrap element like "row" or "col-md-3" using JavaScript, how can I determine the default value set by Bootstrap CSS?
For instance, the Bootstrap source code likely sets the "display" value for the "row" class to either "block" or "inline-block". If my JavaScript code changes it to "display: none" and I later need to revert it back to its original state, what is the most effective way to know what that original value was?