Along with the conjunction (AND) and disjunction (OR) we often use the "negation" operator, too. It changes the logical value to the opposite one. It is denoted by the unary operator !
in programming.
If there is a function that checks for even numbers, then negation will allow you to check for odd numbers:
const isEven = (number) => number % 2 === 0;
isEven(10); // true
!isEven(10); // false
I.e., we can just put a !
to the left of the function call and get the opposite result.
Negation is a powerful tool that allows you to concisely express the desired rules in your code without having to write new functions.
What if you wrote !!isEven(10)
like this? Suddenly, the code would work. Double negation in logic is equivalent to no negation at all.
isEven(10); // true
!isEven(10); // false
!!isEven(10); // true
Write a function, isPalindrome()
, to check if a word is a palindrome. A palindrome is a word that reads the same backwards as it does forward.
isPalindrome('refer'); // true
isPalindrome('level'); // true
isPalindrome('hexlet'); // false
// You can pass words to the function in any case
// So first you have to make the word lower case: word.toLowerCase()
isPalindrome('Madam'); // true
To find a palindrome, you need to reverse the string and compare it to the initial one. To do this, use the reverse()
function.
reverse('hexlet'); // 'telhex'
Write a function, isNotPalindrome()
, to check if a word is NOT a palindrome:
isNotPalindrome('level'); // false
isNotPalindrome('wow'); // false
isNotPalindrome('hexlet'); // true
All you need is to negate the isPalindrome()
function call within the isNotPalindrome()
function's body.
If you've reached a deadlock it's time to ask your question in the «Discussions». How ask a question correctly:
Tests are designed so that they test the solution in different ways and against different data. Often the solution works with one kind of input data but doesn't work with others. Check the «Tests» tab to figure this out, you can find hints at the error output.
It's fine. 🙆 One task in programming can be solved in many different ways. If your code passed all tests, it complies with the task conditions.
In some rare cases, the solution may be adjusted to the tests, but this can be seen immediately.
It's hard to make educational materials that will suit everyone. We do our best but there is always something to improve. If you see a material that is not clear to you, describe the problem in “Discussions”. It will be great if you'll write unclear points in the question form. Usually, we need a few days for corrections.
By the way, you can participate in courses improvement. There is a link below to the lessons course code which you can edit right in your browser.
Your exercise will be checked with these tests:
1// @ts-check
2
3import { test, expect } from '@jest/globals';
4import f from './index.js';
5
6test('test', () => {
7 expect(f('wow')).toBe(false);
8 expect(f('hexlet')).toBe(true);
9 expect(f('asdffdsa')).toBe(false);
10 expect(f('Wow')).toBe(false);
11});
12
Teacher's solution will be available in: