소프트웨어 개발자 주간 업데이트 #10: 기능, 기능 및 추가 기능...
14560 단어 beginnersjavascriptwebdev
이번 주는 functions에 관한 모든 것이었습니다! 손에 커피(또는 차)를 드시기 바랍니다. 요약할 내용이 많습니다!
주제
//In the example below, totalEggs is only accessible within the function
function collectEggs(){
let totalEggs = 6;
console.log(totalEggs);
}
//An example showing that console.log is referencing the bird
//variable that's inside the function because they are more
//closely connected due to both being inside the same function.
//This is overriding the global variable bird.
let bird = "Scarlet Macaw";
function birdWatch(){
let bird = "Great Blue Heron";
console.log(bird);
}
birdWatch();
//Would print: Great Blue Heron
//An example of scope within a conditional.
let radius = 8;
if (radius > 0){
const PI = 3.14159;
let message = "Hello!";
}
//This will print the radius variable
console.log(radius);
//This will print undefined because the PI variable is
//inside the radius conditional statement, called a Block
console.log(PI);
//An example of nesting functions, where the inner function has
//access to the hero variable in the outer function.
function outer(){
let hero = "Black Panther";
function inner(){
let cryForHelp = `${hero}, please save me!`;
console.log(cryForHelp);
}
inner();
}
//Function Expression
const square = function(num){
return num * num;
};
//An example where ine function calls other functions by passing a function as an argument
function callTwice(func){
func();
func();
}
//Example using for loop with higher order function
function callTenTimes(f){
for(let i = 0; i < 10; i++){
f();
}
}
function rollDie(){
const roll = Math.floor(Math.random() * 6) + 1;
console.log(`Your dice roll is: ${roll}`);
}
callTwice(rollDie)
//An example of creating our own methods on an object, in this
//case the object is myMath and the methods are multiple,
//divide, square, and PI
const myMath = {
multiply: function(x, y){
return x * y;
},
divide: function (x, y){
return x / y;
},
square: function(x){
return X * x;
},
PI: 3.14159
};
//The default reference of "this" is the window object. But in
//the example below we are overriding it by using it inside
//the person object
const person = {
first: "Ethan",
last: "Goddard",
fullName(){
return `${this.first} ${this.last}`
}
}
//person.fullName() would return "Ethan Goddard"
Try and Catch: 오류와 관련이 있는 JavaScript의 두 문입니다. 오류를 "잡아"코드 실행이 중지되는 것을 방지합니다.
//An example of code we know will have an error
try {
hello.toUpperCase()
} catch {
console.log("Opps! Looks like I ran into an error.");
}
console.log("If you see this message, the code still ran after an error was encountered!");
//Another example, using it in a function
function yell(message){
try {
console.log(message.toUpperCase().repeat(3));
} catch (e) {
//We'll print out the error message by "catch"ing it
//with e and using console.log(e)
console.log(e);
console.log("Please enter a string next time!");
}
}
주간 검토
이번 주에는 흡수해야 할 것이 많았습니다. 함수는 JavaScript의 핵심 구성 요소이며 주제를 이해하는 것이 중요합니다. 내 노트와 예제가 도움이 되었기를 바랍니다. 설명할 수 있을 만큼 잘 이해하고 있다는 책임을 스스로에게 부여합니다. 이번 주 새로운 주제를 기대해주세요!
Bootcamp 수업 완료: 219/579
즐겁게 읽으셨기를 바랍니다!
GitHub에서 저를 팔로우하고 더 많은 정보를 얻으십시오!
Reference
이 문제에 관하여(소프트웨어 개발자 주간 업데이트 #10: 기능, 기능 및 추가 기능...), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/realnerdethan/software-dev-weekly-update-10-functions-functions-and-more-functions-52bn텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)