Accomplishment Form

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 6

SHS IN SAN NICHOLAS III, BACOOR CITY

Address: Garnet St. Green Valley, San Nicolas III, City of Bacoor, Cavite
Telephone No: (046) 236 5729
Email: 342600@deped.gov.ph

SUBJECT:____________________________________________
SEM/SCHOOL YEAR:____________________________________

Name of Student: _____________ Year and Section:_____

CHECKLIST OF ACCOMPLISHED ACTIVITIES

WRITTEN OUTPUTS PERFORMANCE TASKS


Activity and Score Activity and Score
1. _____________________ _____________________
2. _____________________ _____________________
3. _____________________ _____________________
4. _____________________ _____________________
5. _____________________ _____________________
6. _____________________ _____________________
7. _____________________ _____________________
8. _____________________ _____________________
9. _____________________ _____________________
10. _____________________ _____________________
11. _____________________ _____________________
12. _____________________ _____________________
13. _____________________ _____________________
14. _____________________ _____________________
15. _____________________ _____________________

________________ _________________ _________________


RYAN PAUL ROY
_ Student’s Parent’s Signature Teacher’s Initial

Signature
SHS IN SAN NICHOLAS III, BACOOR CITY
Address: Garnet St. Green Valley, San Nicolas III, City of Bacoor, Cavite
Telephone No: (046) 236 5729
Email: 342600@deped.gov.ph

SUBJECT: COMPUTER PORGRAMMING 2


nd
2 Semester, SY 2022-2023

Name of Student: Estrellado Jemrex_ Year and Section:_____

LEARNER’S ACCOMPLISHMENT FORM

Lesson/Activity Title: ___________________ Date conducted: ________

Acquired Knowledge and Skills


- I learned about the differences between function expressions, arrow functions, and
function declarations. While they may seem similar, each has its own unique syntax and
use cases. Function expressions and arrow functions are often used for more concise
code, while function declarations are useful for larger, more complex functions.

Understanding
(Reflection- Challenges in conducting the learning activity and how you deal with it)

After reviewing functions, I feel confident in my understanding of the different types of functions
in JavaScript and their various applications. Functions are essential in programming because
they allow us to break down complex tasks into smaller, reusable parts of code. By using
functions, we can write cleaner, more organized code and avoid repetitive tasks
SHS IN SAN NICHOLAS III, BACOOR CITY
Address: Garnet St. Green Valley, San Nicolas III, City of Bacoor, Cavite
Telephone No: (046) 236 5729
Email: 342600@deped.gov.ph

SUBJECT: COMPUTER PORGRAMMING 2


nd
2 Semester, SY 2022-2023

Name of Student: _____________ Year and Section:_____ LEARNER’S

ACCOMPLISHMENT FORM

Lesson/Activity Title: ___________________ Date conducted: ________

Acquired Knowledge and Skills

- After reviewing scope, I have a better understanding of how variables are accessed
throughout a program and the importance of scoping variables tightly. Scope refers to
the context in which variables are defined and can impact their accessibility in different
parts of the code.

Understanding
(Reflection- Challenges in conducting the learning activity and how you deal with it)

- In JavaScript, there are two types of scope: global scope and block scope. Global
scope refers to the context within which variables are accessible to every part of
the program, while block scope refers to the context within which variables are
accessible only within the block they are defined. It's important to be mindful of
the scope of variables in order to avoid conflicts or errors in our code.
- Furthermore, I learned about global variables and local variables. Global variables
exist within the global scope and can be accessed anywhere in the program,
while local variables exist within block scope and can only be accessed within the
block they are defined in. It's best practice to keep variables as tightly scoped as
possible to avoid scope pollution and reduce the risk of unintended
consequences.
SHS IN SAN NICHOLAS III, BACOOR CITY
Address: Garnet St. Green Valley, San Nicolas III, City of Bacoor, Cavite
Telephone No: (046) 236 5729
Email: 342600@deped.gov.ph

SUBJECT: COMPUTER PORGRAMMING 2


nd
2 Semester, SY 2022-2023

Name of Student: _____________ Year and Section:_____

LEARNER’S ACCOMPLISHMENT FORM

Lesson/Activity Title: ___________________ Date conducted: ________

Acquired Knowledge and Skills

- One important concept to remember when working with arrays is indexing. Each
item in an array is assigned a numbered position, or index, starting at 0. We can
access items in an array using their index, with syntax like myArray[0]. We can
also change items in an array using their index, with syntax like myArray[0] = 'new
string'. Additionally, arrays have a length property, which allows us to see how
many items are in an array.
- Arrays have their own methods, such as .push() and .pop(), which add and
remove items from an array, respectively. It's important to note that some
methods are mutating, meaning they will change the original array, while others
are not mutating. We can always check the documentation to see which methods
mutate and which do not.
- Variables that contain arrays can be declared with let or const, but even when
declared with const, arrays are still mutable. However, a variable declared with
const cannot be reassigned. Furthermore, arrays mutated inside of a function will
keep that change even outside the function.

Understanding
(Reflection- Challenges in conducting the learning activity and how you deal with it)
- Overall, understanding arrays and their methods is important for working with and
manipulating data in JavaScript. By learning how to work with arrays, we can efficiently
and effectively handle large sets of data.
SHS IN SAN NICHOLAS III, BACOOR CITY
Address: Garnet St. Green Valley, San Nicolas III, City of Bacoor, Cavite
Telephone No: (046) 236 5729
Email: 342600@deped.gov.ph

SUBJECT: COMPUTER PORGRAMMING 2


nd
2 Semester, SY 2022-2023

Name of Student: _____________ Year and Section:_____ LEARNER’S

ACCOMPLISHMENT FORM Lesson/Activity Title: ___________________

Date conducted: ________

Acquired Knowledge and Skills


- Reading through this reflection on objects in JavaScript, it's apparent that objects are an
essential part of the language's mechanics. Objects in JavaScript are collections of key-
value pairs, where each key-value pair represents a property. Additionally, when a
property is a function, it's known as a method.
-

Understanding
(Reflection- Challenges in conducting the learning activity and how you deal with it)

- The article goes on to explain that we can access, add, or edit an object's
properties using dot notation or bracket notation. We can also add methods to
object literals using key-value syntax with anonymous function expressions as
values or by using the new ES6 method syntax.
- Moreover, the article emphasizes that objects are mutable, meaning we can
change their properties even when they're declared with const. It's also crucial to
note that objects are passed by reference, meaning when we make changes to an
object passed into a function, those changes are permanent.
-
SHS IN SAN NICHOLAS III, BACOOR CITY
Address: Garnet St. Green Valley, San Nicolas III, City of Bacoor, Cavite
Telephone No: (046) 236 5729
Email: 342600@deped.gov.ph

SUBJECT: COMPUTER PORGRAMMING 2


nd
2 Semester, SY 2022-2023

Name of Student: _____________ Year and Section:_____ LEARNER’S

ACCOMPLISHMENT FORM Lesson/Activity Title: ___________________

Date conducted: ________

Acquired Knowledge and Skills


- After reading this reflection on iterators, it's clear that iterators are powerful tools for
manipulating arrays in JavaScript. There are several different iterator methods available,
including .forEach(), .map(), .filter(), .findIndex(), and .reduce(). Each method performs a
specific operation on an array and returns a new array or a single value
- Moreover, the article explains that the .filter() method checks every element in an array
to see if it meets certain criteria and returns a new array with the elements that return
truthy for the criteria. The .findIndex() method returns the index of the first element of an
array that satisfies a condition in the callback function. It returns -1 if none of the
elements in the array satisfies the condition. Lastly, the .reduce() method iterates through
an array and takes the values of the elements and returns a single value.
-

Understanding
(Reflection- Challenges in conducting the learning activity and how you deal with it)
- It's also emphasized that we can visit the Mozilla Developer Network to learn more
about iterator methods (and all other parts of JavaScript!). Overall, this reflection has
been an excellent refresher on the basics of iterator methods in JavaScript and their
capabilities.

You might also like