Snippets Collections
import React from "react";
import ReactDOM from "react-dom";

class App extends React.Component {
  render() {
    return [
      {
        name: "Sam",
        email: "somewhere@gmail.com",
        public: false
      },

      {
        name: "Ash",
        email: "something@gmail.com",
        public: true
      }
    ].map((anObjectMapped, index) => {
      return anObjectMapped.public ? (
        <p key={`${anObjectMapped.name}_{anObjectMapped.email}`}>
          {anObjectMapped.name} - {anObjectMapped.email}
        </p>
      ) : null;
    });
  }
}

ReactDOM.render(<App />, document.getElementById("container"));
People = 30
Cars = 40
Trucks = 14
# line 1,2,3 assign the value to variables
If cars > people: Using if statement
  Print(“we should take the  cars.”)
Elif cars < people: if 1st is false execute elif
  print(“we should not take the car.”)
else : # if both are false then execute else:
    print(“we can’t decide.”)
                               
                                
star

Mon May 02 2022 17:13:08 GMT+0000 (Coordinated Universal Time)

#condition #ifelse #operator
star

Tue Apr 21 2020 11:15:59 GMT+0000 (Coordinated Universal Time) https://www.amazon.com/Learn-Python-Hard-Way-Introduction/dp/0321884914

#python #python #condition #ifstatement #elifstatement #elsestatement

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension