Index
Properties
Methods
Properties
key
The key (last part of the path) of the location of this DataSnapshot.
The last token in a Database location is considered its key. For example,
							"ada" is the key for the /users/ada/ node. Accessing the key on any
							DataSnapshot will return the key for the location that generated it.
						However, accessing the key on the root URL of a Database will return null.
ref
The Reference for the location that generated this DataSnapshot.
Methods
child
- 
							Gets another DataSnapshotfor the location at the specified relative path.Passing a relative path to the child()method of a DataSnapshot returns anotherDataSnapshotfor the location at the specified relative path. The relative path can either be a simple child name (for example, "ada") or a deeper, slash-separated path (for example, "ada/name/first"). If the child location has no data, an emptyDataSnapshot(that is, aDataSnapshotwhose value isnull) is returned.Parameters- 
									path: stringA relative path to the location of child data. 
 Returns DataSnapshot
- 
									
exists
- 
							Returns true if this DataSnapshotcontains any data. It is slightly more efficient than usingsnapshot.val() !== null.Returns boolean
exportVal 
					- 
							Exports the entire contents of the DataSnapshot as a JavaScript object. The exportVal()method is similar toval(), except priority information is included (if available), making it suitable for backing up your data.Returns anyThe DataSnapshot's contents as a JavaScript value (Object, Array, string, number, boolean, or null).
forEach 
					- 
							Enumerates the top-level children in the DataSnapshot.Because of the way JavaScript objects work, the ordering of data in the JavaScript object returned by val()is not guaranteed to match the ordering on the server nor the ordering ofchild_addedevents. That is whereforEach()comes in handy. It guarantees the children of aDataSnapshotwill be iterated in their query order.If no explicit orderBy*()method is used, results are returned ordered by key (unless priorities are used, in which case, results are returned by priority).Parameters- 
									action: (a: IteratedDataSnapshot) => boolean | voidA function that will be called for each child DataSnapshot. The callback can return true to cancel further enumeration. - 
											- 
													ParametersReturns boolean | void
 
- 
													
 
- 
											
 Returns booleantrue if enumeration was canceled due to your callback returning true. 
- 
									
getPriority 
					- 
							Gets the priority value of the data in this DataSnapshot.Applications need not use priority but can order collections by ordinary properties (see Sorting and filtering data). Returns string | number | null
hasChild 
					- 
							Returns true if the specified child path has (non-null) data. Parameters- 
									path: stringA relative path to the location of a potential child. 
 Returns booleantrueif data exists at the specified child path; elsefalse.
- 
									
hasChildren 
					- 
							Returns whether or not the DataSnapshothas any non-nullchild properties.You can use hasChildren()to determine if aDataSnapshothas any children. If it does, you can enumerate them usingforEach(). If it doesn't, then either this snapshot contains a primitive value (which can be retrieved withval()) or it is empty (in which case,val()will returnnull).Returns booleantrue if this snapshot has any children; else false. 
numChildren 
					- 
							Returns the number of child properties of this DataSnapshot.Returns number
toJSON
- 
							Returns a JSON-serializable representation of this object. Returns Object | null
val
- 
							Extracts a JavaScript value from a DataSnapshot.Depending on the data in a DataSnapshot, theval()method may return a scalar type (string, number, or boolean), an array, or an object. It may also return null, indicating that theDataSnapshotis empty (contains no data).Returns anyThe DataSnapshot's contents as a JavaScript value (Object, Array, string, number, boolean, or null).
A
DataSnapshotcontains data from a Database location.Any time you read data from the Database, you receive the data as a
DataSnapshot. ADataSnapshotis passed to the event callbacks you attach withon()oronce(). You can extract the contents of the snapshot as a JavaScript object by calling theval()method. Alternatively, you can traverse into the snapshot by callingchild()to return child snapshots (which you could then callval()on).A
DataSnapshotis an efficiently generated, immutable copy of the data at a Database location. It cannot be modified and will never change (to modify data, you always call theset()method on aReferencedirectly).