This project identifies "loyal customers" based on log files from two different days. A loyal customer is defined as a customer who:
- Visited the website on both days.
- Visited at least two unique pages across the two days.
LoyalCustomers/
│
├── logs/
│ ├── day1.json # Log file for Day 1
│ └── day2.json # Log file for Day 2
│
├── src/
│ ├── index.js # Main JavaScript code
│
└── README.md # Documentation (This file)
//Compile and run
npm start