馃殌 CYBER WEEK SALE: 50% OFF on JavaScript Fundamentals 馃挭

PostgreSQL Views vs Stored Procedures

In this short Postgres tutorial you鈥檒l learn the differences between choosing a view or stored procedure to save a SELECT query in PostgreSQL. ...

November 17, 2020 路 1 min 路 Coderslang Master

The difference between regular views and materialized views in PostgreSQL

Materialized views in PostgreSQL differ from the regular ones as they do physically store the data in the database. ...

November 16, 2020 路 1 min 路 Coderslang Master

JS Interview #7: Is this an array?

Let's find out what鈥檚 the deal with JavaScript arrays. Is `array` an array? (think well, then click for the answer and explanation) In line one we create an array and bind it with the array constant....

November 15, 2020 路 1 min 路 Coderslang Master

Coderslang CV review

Your CV is the first and sometimes the only chance for you to impress your future employer. Don鈥檛 let this opportunity be wasted. ...

November 14, 2020 路 1 min 路 Coderslang Master

How to create a VIEW in PostgreSQL

In PostgreSQL, view is a virtual table. It represents the result of a SELECT query and can be used to quickly get access to data without having to execute the full query. ...

November 13, 2020 路 2 min 路 Coderslang Master

JS Interview #6: Variable number of arguments in JavaScript

`true` or `false`? That is the question... (think well, then click for the answer and explanation) In JS, all functions have access to the internal arguments array that holds all arguments that were passed into the function....

November 12, 2020 路 1 min 路 Coderslang Master

JS Interview #5: Can you use an arrow function as a getter?

Are there any issues with the `getId` function? What will be logged to the screen? (think well, then click for the answer and explanation) So, getId is an arrow function, thus it doesn鈥檛 have this of its own....

November 9, 2020 路 1 min 路 Coderslang Master

How to save a SELECT query in PostgreSQL

Learn how you can use stored procedures to give a name to any of your SELECT queries and make them reusable. ...

November 8, 2020 路 4 min 路 Coderslang Master

Coderslang 3.3.1

Changelog for the new version of the Coderslang app! ...

November 7, 2020 路 1 min 路 Coderslang Master

JS Interview #4: try/catch

How will the `try/catch` blocks behave? What will be logged to the console? (think well, then click for the answer and explanation) So, we have 2 variables and 2 try/catch blocks that supposedly catch errors and put them into e1 and e2....

November 6, 2020 路 1 min 路 Coderslang Master