Added some TODOs

This commit is contained in:
Daniel Xie
2016-11-29 17:38:50 -06:00
parent 867ae191b5
commit 2d41a63707
4 changed files with 25 additions and 11 deletions
+3
View File
@@ -1,3 +1,6 @@
//TODO Saving only works with stirngs.key value pairs. Think of a system to do saves
// And everything with all the things I have
//Replaces the character at an index with a new character
String.prototype.replaceAt=function(index, character) {
return this.substr(0, index) + character + this.substr(index+character.length);