Listing 4.17 - A function to display player information
JS Bin
let player;
const player1 = {
name: "Kandra",
place: "The Dungeon of Doom",
health: 50
};
const player2 = {
name: "Dax",
place: "The Old Library",
health: 40
};
const showPlayerInfo = () => {
const { name, place, health } = player;
console.log(`
${name}
------------------------------
${name} is in ${place}
${name} has health ${health}
------------------------------
`);
};
player = player1;
showPlayerInfo();
player = player2;
showPlayerInfo();