Skip to content
#

webdevelopment

Here are 1,019 public repositories matching this topic...

biko-the-bird
biko-the-bird commented Jul 7, 2018

The chat tutorial listed for elixir is outdated. It uses a old version of phoenix and could be confusing to new users who would be learning a oudated set of syntax, application structure, commands i.e. mix phoenix.create vs. mix phx.create.

Also it's missing some steps. For one this they never do mix ecto.create without which the postgres database is not initialized so the app doesn't wo

DBi1512
DBi1512 commented Mar 27, 2019
const rectangle = {
  width: 20, 
  height:10,
  area: 200
}
let {width, heigh, area, perimeter = 60} = rectangle;
console.log(width, height, area, perimeter)  //20 10 200 60
//Lets modify the object:width to 30 and perimeter to 80
const rectangle = {
  width: 30, 
  height:10,
  area: 200,
  perimeter:80
}
let {width, heigh, area, perimeter = 60} = rectangle;
console.log(width

Improve this page

Add a description, image, and links to the webdevelopment topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the webdevelopment topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.