minor fixes
This commit is contained in:
parent
5a024624af
commit
d20a6e3d5e
33 changed files with 357 additions and 395 deletions
|
@ -0,0 +1,2 @@
|
|||
let admin;
|
||||
let user;
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
# Working with variables
|
||||
|
||||
Declare two variables: `admin` and `user`.
|
|
@ -0,0 +1,9 @@
|
|||
describe("Test", function() {
|
||||
it("declares `admin`", function() {
|
||||
admin; // error if not declared
|
||||
});
|
||||
|
||||
it("declares `user`", function() {
|
||||
user; // error if not declared
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue