📌  相关文章
📜  Jordan 1 (1)

📅  最后修改于: 2023-12-03 15:16:40.873000             🧑  作者: Mango

Jordan 1

The Air Jordan 1 is a popular and iconic sneaker created by Nike and Michael Jordan. It was first released in 1985 and has since become one of the most recognized and coveted sneakers in the world.

Design

The design of the Jordan 1 was revolutionary at the time of its release. It featured a high-top silhouette, a bold Nike swoosh logo, and the now-famous "Wings" logo on the ankle collar. The original colorways were red and black, which violated the NBA's uniform policy and caused Jordan to be fined each time he wore them on the court.

Legacy

The Jordan 1 has been re-released many times over the years, in both original and new colorways. It has also inspired many other sneakers and fashion trends. The shoe's enduring popularity is a testament to its timeless design and Michael Jordan's enduring legacy.

Programming

In the world of programming, Jordan 1s have become a symbol of the tech industry's obsession with sneaker culture. Many programmers, developers, and other tech professionals are also sneaker collectors. Jordan 1s are often seen at tech conferences, hackathons, and other industry events.

Code Example
// Define a function to create a new Jordan 1 object
function createJordan1(color, size) {
  return {
    brand: "Nike",
    model: "Air Jordan 1",
    color: color,
    size: size,
    price: 150,
    isAvailable: true
  };
}

// Create a new Jordan 1 object and log its properties
const myJordan1 = createJordan1("red", 11);
console.log(myJordan1.brand); // Nike
console.log(myJordan1.model); // Air Jordan 1
console.log(myJordan1.color); // red
console.log(myJordan1.size); // 11
console.log(myJordan1.price); // 150
console.log(myJordan1.isAvailable); // true