Steps for the enqueue operation in a linked list-based queue
1️⃣ Create a new node with the given value
2️⃣ If the queue is empty, set both front and rear to the new node
3️⃣ Otherwise, set the current rear's next pointer to the new node and update the rear