Big fish buying guide

Buying guide for big fish messenger app

by Adrian Enriquez

HTML

<h1>
  Big fish guide
</h1>

<ol id="list">

</ol>

CSS

body {
  font-family: Tahoma;
}

JavaScript

var level = 18;
var maxPrice = 1345;
maxPrice *= 1000
var nextPrice = maxPrice * 2;

for (var i = 1; i <= level - 4; i++) {
  var content = nextPrice / 2;
  nextPrice = content;

  var newItem = document.createElement("LI");
  var textnode = document.createTextNode(nextPrice.toLocaleString() + 'k');
  newItem.appendChild(textnode);

  var list = document.getElementById("list"); // Get the <ul> element to insert a new node
  list.insertBefore(newItem, list.childNodes[0]);
}