Skip to content

Instantly share code, notes, and snippets.

View mharyst's full-sized avatar

Mykhailo Haryst mharyst

  • Warsaw
View GitHub Profile

Web Functional Test

Project Overview

Create a "Hover Player" feature. If a user hovers over a paragraph, a play button should appear next to the paragraph. Clicking on this button should start playback.

The only requirement for correctness of functionality is that the core tests (unit and integration) pass, however making improvements to the solution is still encouraged.

Example of Final Result

Check out this demo video of a working prototype example of the final result:

@mharyst
mharyst / webliumschool.md
Created October 5, 2018 08:29
Weblium School

Up & Going

выражение - любая ссылка на переменную или значение или набор ссылок и переменных объединенных операторами

2 - это выражение литерального значения
b - это выражение переменной, которое тут означает извлечение его текущего значения
b * 2 - это арифметическое выражение, в данном случае выполнение умножения
a = b * 2 - это выражение присваивания, в данном случае это присвоить результат выражения b * 2 переменной a (подробнее о выражениях далее)
f() - выражение вызова