All Questions
5 questions
3
votes
1
answer
414
views
Event sourcing javascript implementation
An event source built around an observer design pattern implementation…
...
1
vote
1
answer
72
views
Buffered source of HTMLElement(s)
Temporary storing the element(s) returned by document.querySelector and document.querySelectorAll methods could improve ...
5
votes
1
answer
1k
views
Caesar Cipher [The Odin Project-Javascript Exercise]
Very new to coding, so please don't bully me.
Implement the legendary caesar cipher:
In cryptography, a Caesar cipher, also known as Caesar's cipher, the shift cipher, Caesar's code or Caesar shift, ...
3
votes
1
answer
1k
views
JS calculator module using functional programming
All of the code is self-explanatory and pretty much complete.
What the code does:
Calculates using onscreen numerics and operators
Validates any erroneous operations, such as 4 ** 8 or *9
Good ...
0
votes
2
answers
379
views
Write an anonymous function validating email address
Problem statement
Write an anonymous function which take email address as parameter and returns true/false after validating the input parameter.
Objective
This assignment will help you ...