js-base-fun

Vanilla JS fun

by robhortn

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js"></script>
<h1>JS Fun</h1>
<p>
  Just some fun with my favorite flavor of JS ... vanilla!
</p>

<div id="debug-output">
  <p>.:: Debug output ::.</p>
</div>

CSS

#debug-output {
  margin-top: 20px;
  background-color: blue;
  color: yellow;
  padding: 8px;
  font-family: 'Segoe UI', Consoloas, Courier;
}

JavaScript

var filter = {
	"prop1":"value1",
  "prop2":"value2",
  "prop3":"value3"
};

function logit(strMsg) {
  	document.getElementById('debug-output').innerHTML += strMsg + '<br/>'	
}

Object.keys(filter).forEach(function(key) {
  logit(key, filter[key]);
});