
	getNearestNumber(a: Array, n: Number): Integer
	
		Finds the nearest number to the "n" argument in the array and retrieves its index, or -1 whenever the array is empty.
		
			a array of numbers *sorted* from the smallest to the highest
			n reference number
		
	
