ReactJS

My posts in the reactjs and javascript

Javascript simple key generator

let uniqueId = 0;

function uniqueID() {
    return uniqueId++;
}