GreatOnion:
I'm glad to answer my own Question 
Alternative in MKR1010 WIFI Board for EEPROM will be FLASH STORAGE
Hope it will help someone

Imgur: The magic of the Internet
/*
Store and retrieve structured data in Flash memory.
This example code is in the public domain.
Written 30 Apr 2015 by Cristian Maglie
*/
#include <FlashStorage.h>
// Create a structure that is big enough to contain a name
// and a surname. The "valid" variable is set to "true" once
// the structure is filled with actual data for the first time.
typedef struct {
boolean valid;
char name[100];
char surname[100];
} Person;
// Reserve a portion of flash memory to store a "Person" and
// call it "my_flash_store".
FlashStorage(my_flash_store, Person);
// Note: the area of flash memory reserved lost every time
// the sketch is uploaded on the board.
void setup() {
SERIAL_PORT_MONITOR.begin(9600);
while (!SERIAL_PORT_MONITOR) { }
// Create a "Person" variable and call it "owner"
Person owner;
// Read the content of "my_flash_store" into the "owner" variable
owner = my_flash_store.read();
// If this is the first run the "valid" value should be "false"...
if (owner.valid == false) {
// ...in this case we ask for user data.
SERIAL_PORT_MONITOR.setTimeout(30000);
SERIAL_PORT_MONITOR.println("Insert your name:");
String name = SERIAL_PORT_MONITOR.readStringUntil('\n');
SERIAL_PORT_MONITOR.println("Insert your surname:");
String surname = SERIAL_PORT_MONITOR.readStringUntil('\n');
// Fill the "owner" structure with the data entered by the user...
name.toCharArray(owner.name, 100);
surname.toCharArray(owner.surname, 100);
// set "valid" to true, so the next time we know that we
// have valid data inside
owner.valid = true;
// ...and finally save everything into "my_flash_store"
my_flash_store.write(owner);
// Print a confirmation of the data inserted.
SERIAL_PORT_MONITOR.println();
SERIAL_PORT_MONITOR.print("Your name: ");
SERIAL_PORT_MONITOR.println(owner.name);
SERIAL_PORT_MONITOR.print("and your surname: ");
SERIAL_PORT_MONITOR.println(owner.surname);
SERIAL_PORT_MONITOR.println("have been saved. Thank you!");
} else {
// Say hello to the returning user!
SERIAL_PORT_MONITOR.println();
SERIAL_PORT_MONITOR.print("Hi ");
SERIAL_PORT_MONITOR.print(owner.name);
SERIAL_PORT_MONITOR.print(" ");
SERIAL_PORT_MONITOR.print(owner.surname);
SERIAL_PORT_MONITOR.println(", nice to see you again :-)");
}
}
void loop() {
// Do nothing...
}
why not the EEPROM emulation library?