Jonkman Microblog
  • Login
Show Navigation
  • Public

    • Public
    • Network
    • Groups
    • Popular
    • People

Notices tagged with javascript, page 13

  1. ∑ XahLee (xahlee@noagendasocial.com)'s status on Thursday, 15-Feb-2018 15:09:35 EST ∑ XahLee ∑ XahLee
    in reply to

    Meaning of “Object” in Computer Languages
    http://xahlee.info/comp/meaning_of_object_in_computer_languages.html
    #java #lisp #python #JavaScript #c

    In conversation Thursday, 15-Feb-2018 15:09:35 EST from noagendasocial.com permalink
  2. ∑ XahLee (xahlee@noagendasocial.com)'s status on Thursday, 15-Feb-2018 04:54:59 EST ∑ XahLee ∑ XahLee
    in reply to

    #JavaScript ES2015, learn how to Convert Object to/from Map.
    http://xahlee.info/js/js_object_to_map_datatype.html

    map object type is new. It replaces most use of object object.
    And converting to/from object is the most important. There's no default function to do so.

    In conversation Thursday, 15-Feb-2018 04:54:59 EST from noagendasocial.com permalink
  3. ∑ XahLee (xahlee@noagendasocial.com)'s status on Wednesday, 14-Feb-2018 12:40:29 EST ∑ XahLee ∑ XahLee
    in reply to

    #JavaScript in Depth, understand ES2015 Array.prototype.copyWithin
    http://xahlee.info/js/js_Array.prototype.copyWithin.html

    In conversation Wednesday, 14-Feb-2018 12:40:29 EST from noagendasocial.com permalink
  4. ∑ XahLee (xahlee@noagendasocial.com)'s status on Tuesday, 13-Feb-2018 22:39:57 EST ∑ XahLee ∑ XahLee

    adaptive sampling in action

    f_svg_plot(document.getElementById("plot1"),x=>[x,Math.sin(x*x)],[0,7,1.1],[-0.5,7.5],[-1.3,1.3],{"max_angle":f_degree_to_radian(5),"max_recursion_count":9});

    http://xahlee.info/ee/test2018-02-07/parametric_plot.html
    #JavaScript

    In conversation Tuesday, 13-Feb-2018 22:39:57 EST from noagendasocial.com permalink
  5. ∑ XahLee (xahlee@noagendasocial.com)'s status on Tuesday, 13-Feb-2018 22:29:40 EST ∑ XahLee ∑ XahLee

    took 3 hours, to debug.
    if (vbx)
    should be
    if ( vbx !== null && vbx !== undefined )
    fuck #JavaScript

    In conversation Tuesday, 13-Feb-2018 22:29:40 EST from noagendasocial.com permalink
  6. ∑ XahLee (xahlee@noagendasocial.com)'s status on Tuesday, 13-Feb-2018 12:32:53 EST ∑ XahLee ∑ XahLee
    in reply to

    #JavaScript In Depth, learn RegExp in 10 minutes, for beginner http://xahlee.info/js/js_regex_tutorial.html

    In conversation Tuesday, 13-Feb-2018 12:32:53 EST from noagendasocial.com permalink
  7. ∑ XahLee (xahlee@noagendasocial.com)'s status on Tuesday, 13-Feb-2018 02:00:41 EST ∑ XahLee ∑ XahLee

    i wonder if it is worthwhile, to create a new lang on top of #JavaScript, by writing a set of function wrappers that cover every (good) parts of js. And you code js using this wrapper layer.

    you get minimal speed penalty, and is still pure js.

    In conversation Tuesday, 13-Feb-2018 02:00:41 EST from noagendasocial.com permalink
  8. ∑ XahLee (xahlee@noagendasocial.com)'s status on Tuesday, 13-Feb-2018 01:52:33 EST ∑ XahLee ∑ XahLee
    in reply to

    #JavaScript, understand Class like a Mathematician (updated)
    http://xahlee.info/js/javascript_class.html

    In conversation Tuesday, 13-Feb-2018 01:52:33 EST from noagendasocial.com permalink
  9. ∑ XahLee (xahlee@noagendasocial.com)'s status on Monday, 12-Feb-2018 16:53:32 EST ∑ XahLee ∑ XahLee
    in reply to

    Web Design: say no to Grey Text on White Background
    http://xahlee.info/js/web_design_gray_on_white.html
    #JavaScript

    In conversation Monday, 12-Feb-2018 16:53:32 EST from noagendasocial.com permalink
  10. ∑ XahLee (xahlee@noagendasocial.com)'s status on Sunday, 11-Feb-2018 11:22:56 EST ∑ XahLee ∑ XahLee

    #JavaScript understand the complexity of Array Constructor

    • new Array(…) → same as Array(…)
    • Array() → same as []
    • Array(n) → if n is 0 or 1, 2 etc, same as y=[];y.length=n. Else, same as [x].
    • Array(a1,a2,a3) → same as [a1,a2,a3]

    Examples:
    http://xahlee.info/js/js_array_constructor.html

    In conversation Sunday, 11-Feb-2018 11:22:56 EST from noagendasocial.com permalink
  11. ∑ XahLee (xahlee@noagendasocial.com)'s status on Saturday, 10-Feb-2018 11:39:01 EST ∑ XahLee ∑ XahLee

    #JavaScript in Depth today: Replace All Children, createDocumentFragment
    http://xahlee.info/js/js_dom_createDocumentFragment.html

    In conversation Saturday, 10-Feb-2018 11:39:01 EST from noagendasocial.com permalink
  12. ∑ XahLee (xahlee@noagendasocial.com)'s status on Friday, 09-Feb-2018 18:06:12 EST ∑ XahLee ∑ XahLee

    in #JavaScript, does inserting element in middle of array more expensive that adding to front or end? how much more expensive?

    In conversation Friday, 09-Feb-2018 18:06:12 EST from noagendasocial.com permalink
  13. ∑ XahLee (xahlee@noagendasocial.com)'s status on Friday, 09-Feb-2018 16:21:26 EST ∑ XahLee ∑ XahLee

    get #JavaScript in Depth
    http://xahlee.info/js/buy_xah_js_tutorial.html

    • In depth. Based on lang spec.
    • Code example for every paragraph.
    • Covers ES2015+.
    • No framework/lib, no tricks, no idioms.
    • Written in simple style. Anyone can understand.
    • No ninja zen jargon injection. No joke.

    In conversation Friday, 09-Feb-2018 16:21:26 EST from noagendasocial.com permalink
  14. ∑ XahLee (xahlee@noagendasocial.com)'s status on Friday, 09-Feb-2018 14:22:36 EST ∑ XahLee ∑ XahLee
    in reply to

    find out your screen resolution size
    http://xahlee.info/js/js_viewport_dimension.html
    #javascript

    In conversation Friday, 09-Feb-2018 14:22:36 EST from noagendasocial.com permalink
  15. ∑ XahLee (xahlee@noagendasocial.com)'s status on Friday, 09-Feb-2018 11:32:52 EST ∑ XahLee ∑ XahLee
    in reply to

    #JavaScript today: Understand Prototype and Inheritance in Depth
    http://xahlee.info/js/js_object_prototype_inheritance.html

    In conversation Friday, 09-Feb-2018 11:32:52 EST from noagendasocial.com permalink
  16. ∑ XahLee (xahlee@noagendasocial.com)'s status on Thursday, 08-Feb-2018 21:32:16 EST ∑ XahLee ∑ XahLee

    #JavaScript learn how to write a SVG Clock in 30 minutes
    http://xahlee.info/js/svg_clock.html

    In conversation Thursday, 08-Feb-2018 21:32:16 EST from noagendasocial.com permalink
  17. ∑ XahLee (xahlee@noagendasocial.com)'s status on Thursday, 08-Feb-2018 17:36:48 EST ∑ XahLee ∑ XahLee

    #JavaScript learn ECMAScript 2015 Features in 10 minutes
    http://xahlee.info/js/js_ECMAScript_2015_features.html

    In conversation Thursday, 08-Feb-2018 17:36:48 EST from noagendasocial.com permalink
  18. ∑ XahLee (xahlee@noagendasocial.com)'s status on Thursday, 08-Feb-2018 10:37:25 EST ∑ XahLee ∑ XahLee

    #JavaScript question. With pure and vanilla ES2015, when writing a lib, does it still make sense to export just 1 name? that is, the whole lib looks like mylib = {/* [ lots functions here ] */}. Am guessing, with import/export, we no longer need single object structure?

    In conversation Thursday, 08-Feb-2018 10:37:25 EST from noagendasocial.com permalink
  19. ∑ XahLee (xahlee@noagendasocial.com)'s status on Thursday, 08-Feb-2018 08:47:50 EST ∑ XahLee ∑ XahLee

    #JavaScript understand ES2015 Class in Depth in 10 minutes
    http://xahlee.info/js/javascript_class.html

    In conversation Thursday, 08-Feb-2018 08:47:50 EST from noagendasocial.com permalink
  20. ∑ XahLee (xahlee@noagendasocial.com)'s status on Wednesday, 07-Feb-2018 16:51:41 EST ∑ XahLee ∑ XahLee

    #JavaScript
    does anyone know why “defer” in
    <script defer>console.log ( 3 );</script>
    is ignored?
    I want to know the reason given by whatwg or js standard body.

    In conversation Wednesday, 07-Feb-2018 16:51:41 EST from noagendasocial.com permalink
  • After
  • Before
  • Help
  • About
  • FAQ
  • TOS
  • Privacy
  • Source
  • Version
  • Contact

Jonkman Microblog is a social network, courtesy of SOBAC Microcomputer Services. It runs on GNU social, version 1.2.0-beta5, available under the GNU Affero General Public License.

Creative Commons Attribution 3.0 All Jonkman Microblog content and data are available under the Creative Commons Attribution 3.0 license.

Switch to desktop site layout.