Conditional Pathways

250 XP
Medium
Mission Briefing
The Fractured Network - Part 2

The data flow in the network is chaotic. You need to create conditional pathways to route the data correctly.

Your Task:

  1. Create a function that routes data packets based on their type
  2. Use if/else statements to direct packets to the correct destination
  3. Handle error cases for corrupted packets

Expected Output:

Text packets -> Text Server
Image packets -> Image Server
Audio packets -> Audio Server
Corrupted packets -> Error Handler
Your Progress

0/3 test cases passed

routePackets.js
/**
 * Route data packets based on their type
 * @param {Object} packet - The data packet to route
 * @param {string} packet.type - The type of the packet (text, image, audio)
 * @param {string} packet.data - The data contained in the packet
 * @param {boolean} packet.corrupted - Whether the packet is corrupted
 * @returns {string} - The destination server
 */
function routePacket(packet) {
  // Your code here
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
}

Run your code to see output here