-
-
Save onezeroonezero/9637677 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function pushSomething(ref) { | |
// Let's push something. push() returns a reference that you can hold onto! | |
var justPushed = ref.push({test: "push"}); | |
// We return a reference, but you can also return the name of the newly | |
// created object with .name(). | |
return justPushed; | |
} | |
function removeItem(ref) { | |
// Now we can get back to that item we just pushed via .child(). | |
ref.remove(function(error) { | |
alert(error ? "Uh oh!" : "Success!"); | |
}); | |
} | |
function go() { | |
var testRef = new Firebase("https://example.firebaseIO.com/"); | |
var newRef = pushSomething(testRef); | |
// Later... should popup an alert that says "null" (No Error). | |
removeItem(newRef); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment