摘要:
In this lesson you will create a utility function that allows you to quickly compose behavior of multiple functions to create new behavior. By the end 阅读全文
摘要:
The Object.entries() function is an addition to the ECMAscript scpec in Es2017. This allows us to iterate through the properties of an object and read 阅读全文
摘要:
The Python Standard Library has a lot of modules! To help you get familiar with what's available, here are a selection of our favourite Python Standar 阅读全文
摘要:
Python allows you to open a file, do operations on it, and automatically close it afterwards using with. In the example above we open a file, perform 阅读全文
摘要:
Default arguments are a helpful feature, but there is one situation where they can be surprisingly unhelpful. Using a mutable type (like a list or dic 阅读全文
摘要:
Python provides another useful built-in type: tuples. Tuples are used to store related pieces of information. Consider this example involving latitude 阅读全文
摘要:
What a Proxy does is handle communication for an Object. To create a proxy object, we use the Proxy constructor - new Proxy();. The proxy constructor 阅读全文
摘要:
The iterator protocol is used to define a standard way that an object produces a sequence of values. What that really means is you now have a process 阅读全文
摘要:
Write a function, remove_duplicates that takes a list as its argument and returns a new list containing the unique elements of the original list. The 阅读全文