# Fibonacci Number
> Maximum safe [Fibonacci number][fibonacci-number] when stored in [double-precision floating-point][ieee754] format.
## Usage
```javascript
var FLOAT64_MAX_SAFE_FIBONACCI = require( '@stdlib/constants/float64/max-safe-fibonacci' );
```
#### FLOAT64_MAX_SAFE_FIBONACCI
The maximum [safe][safe-integers] [Fibonacci number][fibonacci-number] when stored in [double-precision floating-point][ieee754] format.
```javascript
var bool = ( FLOAT64_MAX_SAFE_FIBONACCI === 8944394323791464 );
// returns true
```
## Examples
```javascript
var FLOAT64_MAX_SAFE_FIBONACCI = require( '@stdlib/constants/float64/max-safe-fibonacci' );
var v;
var i;
function fibonacci( n ) {
var a;
var b;
var c;
var i;
a = 1;
b = 1;
for ( i = 3; i <= n; i++ ) {
c = a + b;
a = b;
b = c;
}
return b;
}
for ( i = 0; i < 100; i++ ) {
v = fibonacci( i );
if ( v > FLOAT64_MAX_SAFE_FIBONACCI ) {
console.log( 'Unsafe: %d', v );
} else {
console.log( 'Safe: %d', v );
}
}
```
[safe-integers]: http://www.2ality.com/2013/10/safe-integers.html
[fibonacci-number]: https://en.wikipedia.org/wiki/Fibonacci_number
[ieee754]: https://en.wikipedia.org/wiki/IEEE_754-1985