Get Mystery Box with random crypto!

Dedicated Coders

Telegram kanalining logotibi dedicated_coders — Dedicated Coders D
Telegram kanalining logotibi dedicated_coders — Dedicated Coders
Kanal manzili: @dedicated_coders
Toifalar: Dasturlar
Til: Oʻzbek tili
Obunachilar: 52
Kanalning ta’rifi

Any question dm me: @mirzoyoqub
My portfolio: https://mirzoyoqub.pages.dev

Ratings & Reviews

2.00

3 reviews

Reviews can be left only by registered users. All reviews are moderated by admins.

5 stars

0

4 stars

0

3 stars

1

2 stars

1

1 stars

1


Oxirgi xabar

2022-10-05 07:13:40 In addition when made your first projects on HTML and CSS but if you still have some question contact me I will help you as possible as I can
60 viewsedited  04:13
Ochish/sharhlash
2022-10-05 07:11:45 YouTube blogs:


HTML and CSS:
1)


2)


3)





JavaScript:
1)


2)




Now you should learn JavaScript more deeper in order to start working with JavaScript frameworks. So good luck my dedicated coders
60 viewsedited  04:11
Ochish/sharhlash
2022-10-05 07:04:50 A value in JavaScript is always of a certain type. For example, a string or a number. There are 8 data types in JavaScript: 1. Number 2. String 3. BigInt 4. Boolean(logical type) 5. Null value 6. Undefined value 7. Objects 8. Symbols I will explain these…
50 views04:04
Ochish/sharhlash
2022-10-04 20:23:19 A value in JavaScript is always of a certain type. For example, a string or a number.

There are 8 data types in JavaScript:


1. Number
2. String
3. BigInt
4. Boolean(logical type)
5. Null value
6. Undefined value
7. Objects
8. Symbols


I will explain these types more deeper with examples


So never stop learning JavaScript
58 viewsedited  17:23
Ochish/sharhlash
2022-10-04 17:00:24




For who wants learn deeper
89 views14:00
Ochish/sharhlash
2022-10-04 16:59:10 There is strict mode in JavaScript which makes your code without any bugs and errors

Eliminates some JavaScript silent errors by changing them to throw errors.
Fixes mistakes that make it difficult for JavaScript engines to perform optimizations: strict mode code can sometimes be made to run faster than identical code that's not strict mode.
Prohibits some syntax likely to be defined in future versions of ECMAScript.

Use Strict


To invoke strict mode for an entire script, put the exact statement "use strict"; (or 'use strict';) before any other statements.


For example:

let name="Mirzoyoqub"


1) Strict mode in function: put the exact statement "use strict"; (or 'use strict';) in the function's body before any other statements.


function myStrictFunction() {
// Function-level strict mode syntax
'use strict';
function nested() {
return 'Hello World';
}
return Hi! I'm a strict mode function! ${nested()};
}


2) Strict mode in Classes - all Classes in JavaScript is in Strict mode
82 views미르조야쿱, edited  13:59
Ochish/sharhlash
2022-10-04 08:12:02 Now Deep Copy Example:


The following snippet replaces the Object.assign() method by the JSON methods to carry a deep copy the person object:


let personalInfo = {
firstName: 'Mirzoyoqub',
lastName: 'Rashidov',
address: {
street: 'Chilonzor',
city: 'Tashkent',
}
};


let copiedpersonalInfo = JSON.parse(JSON.stringify(personalInfo));

copiedpersonalInfo.firstName = 'John'; // disconnected

copiedpersonalInfo.address.street = 'Oqqo'rg'on';

console.log(personalInfo);



edited)
105 viewsedited  05:12
Ochish/sharhlash
2022-10-04 08:09:44 In this Example we can clear see about what is



Shallow Copy//////


let personalInfo = {
firstName: 'Mirzoyoqub',
lastName: 'Rashidov',
address: {
street: 'Chilonzor',
city: 'Tashkent',
}
};


let copiedPersonalInfo = Object.assign({}, personalInfo);

copiedPersonalInfo.firstName = 'John'; // disconnected

copiedPersonalInfo.address.street = 'Yunusobod'; // connected


console.log(copiedPersonalInfo);
96 viewsedited  05:09
Ochish/sharhlash
2022-10-04 08:02:35 In JavaScript, you use variables to store values that can be primitive or references. When you make a copy of a value stored in a variable, you create a new variable with the same value.
86 views05:02
Ochish/sharhlash
2022-10-04 08:01:45 So now which is SHallow Copy and Deep Copy. And when we use it ?
83 views05:01
Ochish/sharhlash