Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Javascript block functionality missing blocks #61

Open
6 tasks done
mrredo opened this issue Sep 10, 2024 · 4 comments
Open
6 tasks done

Javascript block functionality missing blocks #61

mrredo opened this issue Sep 10, 2024 · 4 comments
Labels
enhancement New feature or request

Comments

@mrredo
Copy link
Collaborator

mrredo commented Sep 10, 2024

Text category

  • charCodeAt()
  • repeat(count)
  • padStart(targetLength, padString)
  • padEnd(targetLength, padString)
  • split()
  • concat()
@mrredo mrredo added the enhancement New feature or request label Sep 10, 2024
@mrredo
Copy link
Collaborator Author

mrredo commented Sep 10, 2024

Each comment is only supposed to have 1 category in this issue

@mrredo
Copy link
Collaborator Author

mrredo commented Sep 12, 2024

1. Array Creation

  • Array.from(arrayLike, mapFn, thisArg)
  • Array.of(...elements)
  • Array(length)

2. Adding/Removing Elements

  • push(...elements)
  • pop()
  • shift()
  • unshift(...elements)
  • splice(start, deleteCount, ...items)
  • slice(start, end)
  • concat(...arrays)

3. Searching and Indexing

  • indexOf(searchElement, fromIndex)
  • lastIndexOf(searchElement, fromIndex)
  • includes(searchElement, fromIndex)
  • find(callbackFn, thisArg)
  • findIndex(callbackFn, thisArg)

4. Iteration Methods

  • forEach(callbackFn, thisArg)
  • map(callbackFn, thisArg)
  • filter(callbackFn, thisArg)
  • reduce(callbackFn, initialValue)
  • reduceRight(callbackFn, initialValue)
  • every(callbackFn, thisArg)
  • some(callbackFn, thisArg)

5. Sorting and Reversing

  • sort(compareFn)
  • reverse()

6. Transforming Arrays

  • flat(depth)
  • flatMap(callbackFn, thisArg)

7. Utility Methods

  • join(separator)
  • toString()
  • copyWithin(target, start, end)
  • fill(value, start, end)

8. Type Checking

  • Array.isArray(value)

@mrredo
Copy link
Collaborator Author

mrredo commented Sep 12, 2024

Basic javascript functionality blocks

  • console log

@mrredo
Copy link
Collaborator Author

mrredo commented Sep 14, 2024

Write custom sorting block using quick sort algorithm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant