Web_programming
1.14K subscribers
354 photos
14 videos
125 files
1.23K links
Sharif web programming
If you have any questions, please feel free to ask(@yumcoder)
Download Telegram
Call and apply are pretty interchangeable. Just decide whether it’s easier to send in an array or a comma separated list of arguments.

I always remember which one is which by remembering that Call is for comma (separated list) and Apply is for Array.

Bind is a bit different. It returns a new function. Call and Apply execute the current function immediately.

Bind is great for a lot of things. We can use it to curry functions like in the above example. We can take a simple hello function and turn it into a helloJon or helloKelly. We can also use it for events like onClick where we don’t know when they’ll be fired but we know what context we want them to have.
کد فوق و کدهای زیر در جلسه فردا ارزیابی خواهیم کرد. در ادامه Timing functions های مختلف آورده شده است
نمودار زمان انیمشین ch05-02
نمودار زمانی ch05-03
نمودار زمانی ch05-04
wp-5.pdf
7.9 MB
نسخه نهایی اسلاید ۵
فونتهای استاندارد پیشنهادی گوگل برای موبایل و وب
https://www.google.com/get/noto/
نحوه فعال سازی آن در گروه توضیح داده شده است
بر روی کامپیوتر خود nodejs را نیز نصب کنید
به کمک دستورات زیر در ubuntu می توانید nodejs را نصب کنید

curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejs
sudo apt-get install -y build-essential
پس از اجرای دستورات بالا دستور زیر را اجرا کنید
sudo npm install -g create-react-app