-
Notifications
You must be signed in to change notification settings - Fork 0
/
Westwing.js
111 lines (97 loc) · 2.69 KB
/
Westwing.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
class Screen {
constructor(width, height) {
this.height = height;
this.width = width;
}
get diagonal() {
return Math.sqrt(Math.pow(this.width, 2) + Math.pow(this.height, 2));
}
set dimensions(definition) {
var dimensions = definition.split('x')
this.width = parseInt(dimensions[0]);
this.height = parseInt(dimensions[1]);
}
}
let width = 500;
let height = 600;
let screen = new Screen(width, height);
screen.width = 800;
console.log(screen.diagonal); // Should print 1000.
screen.dimensions = '400x300';
console.log(screen.diagonal); // Should print 500.
// function PositiveNumbers() {
// this.current = 0;
// this.next = function() {
// return ++this.current;
// }
// }
// PositiveNumbers();
// console.log(
// PositiveNumbers.next());
// console.log(
// PositiveNumbers.next());
// console.log(
// PositiveNumbers.next());
// console.log(
// PositiveNumbers.next());
// function generateNewFolderName(existingFolders) {
// // Write your code here
// const folderName = "New Folder";
// let index = 2;
// if(!existingFolders.includes(folderName)) return folderName;
// while(existingFolders.includes(`${folderName} (${index})`)) {
// index = index + 1;
// }
// return `${folderName} (${index})`;
// }
// console.log(generateNewFolderName(["New Folder"]));
// class App extends React.Component {
// state = {
// subject: '',
// body: ''
// }
// onChange = ({name, value}) => {
// this.setState({
// [name]: value
// })
// }
// render() {
// return <form>
// <FormField onChange={this.onChange}>
// <Input name="subject"/>
// </FormField>
// <FormField onChange={this.onChange}>
// <Input name="body"/>
// </FormField>
// </form>
// }
// }
// // function getP(persons) {
// // return persons.map(person => {
// // person.lastname = person.lastname.toUpperCase();
// // return person;
// // })
// // }
// // function getCenP(persons) {
// // return persons.map(person => {
// // person.address = '-----';
// // return person;
// // })
// // }
// // const persons = [{
// // name: 'Bert',
// // lastname: 'Simpson'
// // },
// // {
// // name: 'Harry',
// // lastname: 'Potter'
// // },
// // {
// // name: 'Sherlock',
// // lastname: 'Holmes'
// // }]
// // const cPersons = getP(persons);
// // const cenPersons = getCenP(persons);
// // const harry = cPersons.find(({name}) => name === 'Harry');
// // console.log(harry);
// // // const cPersons =