You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue describes how to declare the function expression and declaration with the ES6 Arrow function.
This issue describes how to implement the function concept exercise for the Javascript track.
Getting started
Please please please read the docs before starting. Posting PRs without reading these docs will be a lot more frustrating for you during the review cycle and exhaust Exercism's maintainers' time. So, before diving into the implementation, please read up on the following documents:
mikedamay
changed the title
[Javascript] Implement new Concept Exercise: Function Expression and ES6 Arrow Function
[V3] Implement new Concept Exercise: Function Expression and ES6 Arrow Function
Jan 28, 2021
I am closing this issue because we decided to cut the concepts/concept exercises differently. See #951 (comment) for details. Arrow functions will be combined with callbacks in one exercise and function expression are covered in the functions concept/concept exercise.
This issue describes how to declare the function expression and declaration with the ES6 Arrow function.
This issue describes how to implement the
function
concept exercise for the Javascript track.Getting started
Please please please read the docs before starting. Posting PRs without reading these docs will be a lot more frustrating for you during the review cycle and exhaust Exercism's maintainers' time. So, before diving into the implementation, please read up on the following documents:
Please also watch the following video:
Goal
This exercise aims to tell the student about the declaration of
function,
arrow function.
For example:
function hello ( ) { }
let hello = function ( ) { }
const hello = ( ) => { }
Learning objectives
Out of scope
this
keyword;Concepts
function
declartionsPrerequisites
functions-intro
variables
After
Help
If you have any questions while implementing the exercise, please post the questions as comments on this issue.
The text was updated successfully, but these errors were encountered: